diff options
author | Claudius Holeksa <mail@keldu.de> | 2023-04-22 18:10:13 +0200 |
---|---|---|
committer | Claudius Holeksa <mail@keldu.de> | 2023-04-22 18:10:13 +0200 |
commit | cb7f1acf33a8b766f325984d04dd70ed43335c27 (patch) | |
tree | 43813b0b774e754527fd2cdeb1bf432fd3a10929 /forstio/core | |
parent | 2c8e2829dcf7c299d8f4121571722618f5ca59b3 (diff) |
Moving version declaration to the root
Diffstat (limited to 'forstio/core')
-rw-r--r-- | forstio/core/.nix/derivation.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/forstio/core/.nix/derivation.nix b/forstio/core/.nix/derivation.nix index a3b7ef1..adf0cb4 100644 --- a/forstio/core/.nix/derivation.nix +++ b/forstio/core/.nix/derivation.nix @@ -3,13 +3,14 @@ , scons , clang , clang-tools +, version }: let in stdenvNoCC.mkDerivation { pname = "forstio-core"; - version = "0.0.0"; + inherit version; src = ./..; |