8 stdenv.mkDerivation (finalAttrs: {
12 src = fetchFromGitHub {
15 rev = "v${finalAttrs.version}";
16 hash = "sha256-Pfj8Kwf5AlcrHhLs5A/0vIFWLZaNR3ro+esbs7oWN9I=";
21 # Disable failing tests
27 nativeBuildInputs = [ ldc ];
28 buildInputs = [ curl ];
31 "CC=${stdenv.cc}/bin/cc"
32 "DMD=${ldc.out}/bin/ldmd2"
36 enableParallelBuilding = true;
39 checkTarget = "test_rdmd";
42 description = "Ancillary tools for the D programming language";
43 homepage = "https://github.com/dlang/tools";
44 license = licenses.boost;
45 maintainers = with maintainers; [ jtbx ];
46 platforms = platforms.unix;