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/io-tls/.nix | |
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/io-tls/.nix')
-rw-r--r-- | src/io-tls/.nix/derivation.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/io-tls/.nix/derivation.nix b/src/io-tls/.nix/derivation.nix index ae3575e..a08b195 100644 --- a/src/io-tls/.nix/derivation.nix +++ b/src/io-tls/.nix/derivation.nix @@ -6,7 +6,6 @@ , version , forstio , gnutls -, src ? ./.. }: let @@ -14,7 +13,7 @@ let in stdenvNoCC.mkDerivation { pname = "forstio-io-tls"; inherit version; - inherit src; + src = ./..; enableParallelBuilding = true; |