summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2017-12-08 23:50:33 +0000
committerGitHub <noreply@github.com>2017-12-08 23:50:33 +0000
commitf5f6d8e39376361f16b086befae45371c372be47 (patch)
tree0b881f2a202e44130b263023c7372285dcdb1fac /pkgs/development/tools
parent9e475320fca3290dca7a35475e290feef662dab6 (diff)
parentb2e76afa992fb4b42702287df652735ed934dc2e (diff)
downloadnixlib-f5f6d8e39376361f16b086befae45371c372be47.tar
nixlib-f5f6d8e39376361f16b086befae45371c372be47.tar.gz
nixlib-f5f6d8e39376361f16b086befae45371c372be47.tar.bz2
nixlib-f5f6d8e39376361f16b086befae45371c372be47.tar.lz
nixlib-f5f6d8e39376361f16b086befae45371c372be47.tar.xz
nixlib-f5f6d8e39376361f16b086befae45371c372be47.tar.zst
nixlib-f5f6d8e39376361f16b086befae45371c372be47.zip
Merge pull request #32481 from ThomasMader/dlang
dmd, ldc, dub: Inherit buildInput and meta from build derivation
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/build-managers/dub/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/tools/build-managers/dub/default.nix b/pkgs/development/tools/build-managers/dub/default.nix
index 89996b3d30dc..15e801c1dffa 100644
--- a/pkgs/development/tools/build-managers/dub/default.nix
+++ b/pkgs/development/tools/build-managers/dub/default.nix
@@ -87,10 +87,13 @@ stdenv.mkDerivation rec {
   inherit dubUnittests;
   name = "dub-${dubBuild.version}";
   phases = "installPhase";
+  buildInputs = dubBuild.buildInputs;
 
   installPhase = ''
     mkdir $out
     cp -r --symbolic-link ${dubBuild}/* $out/
   '';
+
+  meta = dubBuild.meta;
 }