From db651641fadd1f3e9a77818e87e20c1024fe227f Mon Sep 17 00:00:00 2001 From: Daniel Phan Date: Mon, 1 Nov 2021 08:32:18 +0700 Subject: [PATCH] fix: use pname for mach-nix suppress `trace: automatically detected pname: 'peerix'` --- VERSION | 2 +- flake.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 8acdd82..8a9ecc2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.1 +0.0.1 \ No newline at end of file diff --git a/flake.nix b/flake.nix index faa52c0..994ff28 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,7 @@ } // flake-utils.lib.eachDefaultSystem (system: let pkgs = nixpkgs.legacyPackages.${system}; in { packages.peerix = mach-nix.lib.${system}.buildPythonApplication { - name = "peerix"; + pname = "peerix"; python = "python39"; src = ./.; version = builtins.readFile ./VERSION;