summaryrefslogtreecommitdiff
path: root/forstio/core/.nix/derivation.nix
diff options
context:
space:
mode:
authorClaudius Holeksa <mail@keldu.de>2023-04-22 18:10:13 +0200
committerClaudius Holeksa <mail@keldu.de>2023-04-22 18:10:13 +0200
commitcb7f1acf33a8b766f325984d04dd70ed43335c27 (patch)
tree43813b0b774e754527fd2cdeb1bf432fd3a10929 /forstio/core/.nix/derivation.nix
parent2c8e2829dcf7c299d8f4121571722618f5ca59b3 (diff)
Moving version declaration to the root
Diffstat (limited to 'forstio/core/.nix/derivation.nix')
-rw-r--r--forstio/core/.nix/derivation.nix3
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 = ./..;