From a098ed6472e20ecc3674a0f6d343e121ab5e9c15 Mon Sep 17 00:00:00 2001 From: Astro Date: Sun, 16 Apr 2023 01:57:24 +0200 Subject: [PATCH] flake.nix: try to fix setting source from flake input --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e1066af..fc33a72 100644 --- a/flake.nix +++ b/flake.nix @@ -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 ];