fix: remove white spaces and newlines for version
This commit is contained in:
parent
db651641fa
commit
9d8a31068c
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
||||||
pname = "peerix";
|
pname = "peerix";
|
||||||
python = "python39";
|
python = "python39";
|
||||||
src = ./.;
|
src = ./.;
|
||||||
version = builtins.readFile ./VERSION;
|
version = builtins.replaceStrings [ " " "\n" ] [ "" "" ] (builtins.readFile ./VERSION);
|
||||||
requirements = builtins.readFile ./requirements.txt;
|
requirements = builtins.readFile ./requirements.txt;
|
||||||
propagatedBuildInputs = with pkgs; [
|
propagatedBuildInputs = with pkgs; [
|
||||||
nix
|
nix
|
||||||
|
|
Loading…
Reference in a new issue