diff options
author | Claudius Holeksa <mail@keldu.de> | 2023-05-12 20:19:54 +0200 |
---|---|---|
committer | Claudius Holeksa <mail@keldu.de> | 2023-05-12 20:19:54 +0200 |
commit | 733b4d1ba7e12de16a05ae9f27faa832978ddf9d (patch) | |
tree | e4280ae487587438e70b5d0b55b2f9f39d596079 /src/codec-json | |
parent | 460e585d37fb895a9e6585dab37e683b696565f3 (diff) |
Apparently nix doesn't like local sources being settable by external means? Further investigation required. Fixed build though
Diffstat (limited to 'src/codec-json')
-rw-r--r-- | src/codec-json/.nix/derivation.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/codec-json/.nix/derivation.nix b/src/codec-json/.nix/derivation.nix index b4dec1d..0f701c9 100644 --- a/src/codec-json/.nix/derivation.nix +++ b/src/codec-json/.nix/derivation.nix @@ -5,7 +5,6 @@ , clang-tools , version , forstio -, src ? ./.. }: let @@ -13,7 +12,7 @@ let in stdenvNoCC.mkDerivation { pname = "forstio-codec-json"; inherit version; - inherit src; + src = ./..; enableParallelBuilding = true; |