diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-11-28 13:30:26 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-11-28 13:30:30 -0500 |
commit | de52a00258a1bd98ddba022da9ecb27ab8be50cc (patch) | |
tree | 76f54b5d4229aa20902f2ef8356087d7ea258b37 /nixDevEnv/dub/mkDub-dmd.nix | |
parent | ldc in need of newer dub (diff) |
nix derivation, dub & dub2nix using ldc2 1.24.0 ok
- dmd 2.091.1 & dub 1.14.0 broken in nix unstable
- dmd 2.094.2 & dub 1.23.0 current dlang
- built using modified local nixpkgs
dub modified to use ldc (without calls to dmd)
- provide overlay for current( dub using ldc )
Diffstat (limited to 'nixDevEnv/dub/mkDub-dmd.nix')
-rw-r--r-- | nixDevEnv/dub/mkDub-dmd.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixDevEnv/dub/mkDub-dmd.nix b/nixDevEnv/dub/mkDub-dmd.nix index 2600d30..a35f2d5 100644 --- a/nixDevEnv/dub/mkDub-dmd.nix +++ b/nixDevEnv/dub/mkDub-dmd.nix @@ -87,7 +87,7 @@ in { export HOME=$PWD ${lib.concatMapStringsSep "\n" dub-add-local deps} - dub build -b release --combined --skip-registry=all + dub build --build=release --combined --skip-registry=all runHook postBuild ''; |