summary refs log tree commit diff
path: root/pkgs/development/compilers/rdmd/default.nix
blob: 38473897698df862d347d70dfaea4093d78f5c72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{stdenv, lib, fetchurl, dmd}:

stdenv.mkDerivation {
  name = "rdmd-2.067.0";

  buildInputs = [ dmd ];

  src = fetchurl {
    url = "https://github.com/D-Programming-Language/tools/archive/v2.067.0.tar.gz";
    sha256 = "2702ecda0427c675084d9b688449bc8c8392fd73e30257d79e2488640d5a9982";
  };

  buildPhase = ''
    dmd rdmd.d
  '';

  installPhase = ''
    mkdir -p $out/bin
    cp rdmd $out/bin/
	'';

  meta = {
    description = "Wrapper for D language compiler";
    homepage = http://dlang.org/rdmd.html;
    license = lib.licenses.boost;
    platforms = stdenv.lib.platforms.unix;
  };
}