about summary refs log tree commit diff
path: root/pkgs/development/tools/dtools/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/dtools/default.nix')
-rw-r--r--pkgs/development/tools/dtools/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/tools/dtools/default.nix b/pkgs/development/tools/dtools/default.nix
index 28d0c57f2e3b..0d639875da57 100644
--- a/pkgs/development/tools/dtools/default.nix
+++ b/pkgs/development/tools/dtools/default.nix
@@ -17,6 +17,10 @@ stdenv.mkDerivation rec {
 
       substituteInPlace posix.mak \
           --replace gcc $CC
+
+      # To fix rdmd test with newer phobos
+      substituteInPlace rdmd.d \
+          --replace " std.stdiobase," ""
   '';
 
   nativeBuildInputs = [ dmd ];
@@ -45,10 +49,11 @@ stdenv.mkDerivation rec {
     }
 	'';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Ancillary tools for the D programming language compiler";
     homepage = https://github.com/dlang/tools;
     license = lib.licenses.boost;
+    maintainers = with maintainers; [ ThomasMader ];
     platforms = stdenv.lib.platforms.unix;
   };
 }