diff options
author | Claudius Holeksa <mail@keldu.de> | 2023-05-07 16:28:01 +0200 |
---|---|---|
committer | Claudius Holeksa <mail@keldu.de> | 2023-05-07 16:28:01 +0200 |
commit | ed68dabfd4c126e8ffabdad9d0763146e83d1cb8 (patch) | |
tree | 3b136bf37cf824a7fb37dfad4b831f403c66b8c1 /src/async | |
parent | 33eac9dc02024b711124ebf45bfcc9a68d8b1470 (diff) |
nix: changeable src
Diffstat (limited to 'src/async')
-rw-r--r-- | src/async/.nix/derivation.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/async/.nix/derivation.nix b/src/async/.nix/derivation.nix index 8ceac08..889b8ad 100644 --- a/src/async/.nix/derivation.nix +++ b/src/async/.nix/derivation.nix @@ -5,6 +5,7 @@ , clang-tools , version , forstio +, src ? ./.. }: let @@ -12,8 +13,7 @@ let in stdenvNoCC.mkDerivation { pname = "forstio-async"; inherit version; - - src = ./..; + inherit src; enableParallelBuilding = true; |