nixpkgs/pkgs/development/tools/build-managers/dub/default.nix
Tobias Geerinckx-Rice 2964212b45
dub: 0.9.24 -> 0.9.25
2016-05-23 01:31:58 +02:00

40 lines
857 B
Nix

{ stdenv, fetchFromGitHub, curl, dmd, gcc }:
stdenv.mkDerivation rec {
name = "dub-${version}";
version = "0.9.25";
src = fetchFromGitHub {
sha256 = "0cb4kx72fvk6vfqkk0mrp6fvv512xhw03dq2dn9lng0daydvdcim";
rev = "v${version}";
repo = "dub";
owner = "D-Programming-Language";
};
buildInputs = [ curl ];
propagatedBuildInputs = [ gcc dmd ];
buildPhase = ''
# Avoid that the version file is overwritten
substituteInPlace build.sh \
--replace source/dub/version_.d /dev/null
patchShebangs ./build.sh
./build.sh
'';
installPhase = ''
mkdir $out
mkdir $out/bin
cp bin/dub $out/bin
'';
meta = with stdenv.lib; {
inherit version;
description = "Build tool for D projects";
homepage = http://code.dlang.org/;
license = licenses.mit;
platforms = platforms.unix;
};
}