mirror of
https://git.clerie.de/clerie/fieldpoc.git
synced 2026-01-03 06:18:12 +00:00
Specify FieldPOC version once in flake.nix
This commit is contained in:
parent
a35780e489
commit
d23c1fbedb
1 changed files with 5 additions and 3 deletions
|
|
@ -6,7 +6,9 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
outputs = { self, nixpkgs, mitel-ommclient2, ... }: {
|
||||
outputs = { self, nixpkgs, mitel-ommclient2, ... }: let
|
||||
fieldpoc_version = "0.11.0";
|
||||
in {
|
||||
packages.x86_64-linux = let
|
||||
pkgs = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
|
|
@ -14,7 +16,7 @@
|
|||
in {
|
||||
fieldpoc = pkgs.python3Packages.buildPythonPackage {
|
||||
pname = "fieldpoc";
|
||||
version = "0.11.0";
|
||||
version = fieldpoc_version;
|
||||
|
||||
src = ./.;
|
||||
|
||||
|
|
@ -106,7 +108,7 @@
|
|||
|
||||
docs = pkgs.stdenv.mkDerivation {
|
||||
pname = "fieldpoc-docs";
|
||||
version = "0.0.1";
|
||||
version = fieldpoc_version;
|
||||
|
||||
src = ./.;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue