This commit is contained in:
conneroisu 2025-10-05 14:30:38 +02:00 committed by GitHub
commit a681dde5fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -32,6 +32,7 @@
hyprland-protocols = final: prev: {
hyprland-protocols = final.callPackage ./nix/default.nix {
version = version + "+date=" + (mkDate (self.lastModifiedDate or "19700101")) + "_" + (self.shortRev or "dirty");
inherit self;
};
};
};

View file

@ -4,12 +4,13 @@
meson,
ninja,
version,
self,
}:
stdenv.mkDerivation {
pname = "hyprland-protocols";
inherit version;
src = ../.;
src = self;
nativeBuildInputs = [meson ninja];