Package lanshare

Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
Marcel Müller 2026-02-09 14:09:57 +01:00
parent dabe5ef0fe
commit 82a8418b82

View file

@ -14,7 +14,24 @@
] (system: f (import inputs.nixpkgs { inherit system; })); ] (system: f (import inputs.nixpkgs { inherit system; }));
in 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 { gitlab-job-status = pkgs.writeShellApplication {
name = "gitlab-job-status"; name = "gitlab-job-status";
runtimeInputs = [ runtimeInputs = [
@ -38,6 +55,7 @@
text = builtins.readFile ./migrate-workspace-deps; text = builtins.readFile ./migrate-workspace-deps;
}; };
}); }
);
}; };
} }