summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/dub/default.nix
blob: d92cca88d5f5c92a31b2b0e87c16e4eebf6f945b (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
29
30
31
32
33
34
35
{stdenv, fetchurl, curl, dmd, gcc, unzip }:

stdenv.mkDerivation {
  name = "dub-0.9.23";

  src = fetchurl {
    url = "https://github.com/D-Programming-Language/dub/archive/v0.9.23.tar.gz";
    sha256 = "7ecbce89c0e48b43705d7c48003394f383556f33562c4b5d884a786cd85814d1";
  };

  buildInputs = [ unzip curl ];

  propagatedBuildInputs = [ gcc dmd ];

  buildPhase = ''
      # Avoid that the version file is overwritten
      substituteInPlace build.sh \
          --replace source/dub/version_.d /dev/null
      ./build.sh
  '';

  installPhase = ''
      mkdir $out
      mkdir $out/bin
      cp bin/dub $out/bin
  '';

  meta = with stdenv.lib; {
    description = "Build tool for D projects";
    homepage = http://code.dlang.org/;
    license = stdenv.lib.licenses.mit;
    platforms = platforms.unix;
  };
}