dub: 1.6.0 -> 1.7.1

This commit is contained in:
Thomas Mader 2018-01-26 22:14:52 +01:00
parent 314fb3d60a
commit b07f0f9eec

View File

@ -1,10 +1,10 @@
{ stdenv, fetchFromGitHub, curl, dmd, libevent, rsync }:
{ stdenv, fetchFromGitHub, fetchpatch, curl, dmd, libevent, rsync }:
let
dubBuild = stdenv.mkDerivation rec {
name = "dubBuild-${version}";
version = "1.6.0";
version = "1.7.1";
enableParallelBuilding = true;
@ -12,9 +12,17 @@ let
owner = "dlang";
repo = "dub";
rev = "v${version}";
sha256 = "1xjr5pp263lbcd4harxy1ybh7q0kzj9iyy63ji6pn66fizrgm7zk";
sha256 = "09bcc9bq2z1rbm8sdip1l81y5p8q13r30k02lzifyasiplrnpvlv";
};
patches = [
# TODO Remove with next release which contains https://github.com/dlang/dub/pull/1354
(fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/dlang/dub/pull/1354.patch";
sha256 = "01alky8a91qwjmlnfjbrn8kiivwr69f3j4c84cjlxrzfp1ph20ah";
})
];
postPatch = ''
# Avoid that the version file is overwritten
substituteInPlace build.sh \
@ -59,6 +67,8 @@ let
outputHash = builtins.hashString "sha256" inputString;
src = dubBuild.src;
patches = dubBuild.patches;
postPatch = dubBuild.postPatch;