move disqalculate file to corect owner and group

This commit is contained in:
Noa Aarts 2025-11-15 17:47:00 +01:00
parent a49765bbb1
commit d1b10def28
Signed by: noa
GPG key ID: 1850932741EFF672
3 changed files with 52 additions and 13 deletions

View file

@ -27,5 +27,6 @@ forAllSystems (
fuzzel-launch = call ./fuzzel-launch.nix;
fuzzel-power = call ./fuzzel-power.nix;
vvvvvv-ap = call ./vvvvvv-ap;
stoat-server = call ./stoat-server;
}
)

View file

@ -0,0 +1,30 @@
{
pkgs,
...
}:
pkgs.rustPlatform.buildRustPackage {
name = "stoatchat";
version = "0.8.8-1";
src = pkgs.fetchFromGitHub {
owner = "stoatchat";
repo = "stoatchat";
tag = "20250807-1";
hash = "sha256-HrhucXy6NywgH7iPEfR28mwp6qEmCXIGBcKBSEzOCsY=";
};
nativeBuildInputs = with pkgs; [
pkg-config
];
buildInputs = with pkgs; [
openssl
];
cargoHash = "sha256-inlB/U97XKjLbX0nPyu/ddLvPiZEET3pOYm6R+tJeSM=";
meta = {
description = "Open source discord alternative";
homepage = "https://stoat.chat/";
};
}