Compare commits

...

1 commit

Author SHA1 Message Date
c6cd325748 Package lanshare
Signed-off-by: Marcel Müller <neikos@neikos.email>
2026-02-09 14:09:57 +01:00

View file

@ -14,7 +14,24 @@
] (system: f (import inputs.nixpkgs { inherit system; }));
in
{
packages = forAllSystems (pkgs: {
packages = forAllSystems (
pkgs:
let
lanshare = pkgs.rustPlatform.buildRustPackage (finalAttrs: {
pname = "lanshare";
version = "0.1.0";
src = ./lanshare;
cargoHash = "sha256-rUTARzVTbi0/KNFUDRynOTioIZIhiZf4suqb9UqtvV4=";
meta = {
description = "A local screenshare application";
mainProgram = "lanshare";
};
});
in
{
inherit lanshare;
gitlab-job-status = pkgs.writeShellApplication {
name = "gitlab-job-status";
runtimeInputs = [
@ -38,6 +55,7 @@
text = builtins.readFile ./migrate-workspace-deps;
};
});
}
);
};
}