flake.nix: try to fix setting source from flake input

This commit is contained in:
Astro 2023-04-16 01:57:24 +02:00
parent 14f1c369e4
commit a098ed6472

View file

@ -17,7 +17,7 @@
in
naersk-lib.buildPackage {
pname = "buzzrelay";
version = with self.sourceInfo; "${toString revCount}-${shortRev}";
version = with self; "${toString revCount}-${shortRev}";
root = ./.;
nativeBuildInputs = with pkgs; [ pkg-config ];
buildInputs = with pkgs; [ openssl systemd ];