46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
77 lines
1.9 KiB
Nix
77 lines
1.9 KiB
Nix
{ stdenv, fetchFromGitHub, curl, dmd, libevent, rsync }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dub";
|
|
version = "1.14.0";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dlang";
|
|
repo = "dub";
|
|
rev = "v${version}";
|
|
sha256 = "070kfkyrkr98y1hbhcf85842c0x7l95w1ambrkdgajpb6kcmpf84";
|
|
};
|
|
|
|
postUnpack = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
# Can be removed with https://github.com/dlang/dub/pull/1368
|
|
dubvar = "\\$DUB";
|
|
postPatch = ''
|
|
substituteInPlace test/fetchzip.sh \
|
|
--replace "dub remove" "\"${dubvar}\" remove"
|
|
'';
|
|
|
|
nativeBuildInputs = [ dmd libevent rsync ];
|
|
buildInputs = [ curl ];
|
|
|
|
buildPhase = ''
|
|
export DMD=${dmd.out}/bin/dmd
|
|
./build.sh
|
|
'';
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
checkPhase = ''
|
|
export DUB=$NIX_BUILD_TOP/source/bin/dub
|
|
export PATH=$PATH:$NIX_BUILD_TOP/source/bin/
|
|
export DC=${dmd.out}/bin/dmd
|
|
export HOME=$TMP
|
|
|
|
rm -rf test/issue502-root-import
|
|
rm test/issue990-download-optional-selected.sh
|
|
rm test/timeout.sh
|
|
rm test/issue674-concurrent-dub.sh
|
|
rm test/issue672-upgrade-optional.sh
|
|
rm test/issue1574-addcommand.sh
|
|
rm test/issue1524-maven-upgrade-dependency-tree.sh
|
|
rm test/issue1416-maven-repo-pkg-supplier.sh
|
|
rm test/issue1037-better-dependency-messages.sh
|
|
rm test/interactive-remove.sh
|
|
rm test/fetchzip.sh
|
|
rm test/feat663-search.sh
|
|
rm test/ddox.sh
|
|
rm test/0-init-multi.sh
|
|
rm test/0-init-multi-json.sh
|
|
|
|
./test/run-unittest.sh
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
mkdir $out/bin
|
|
cp bin/dub $out/bin
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Package and build manager for D applications and libraries";
|
|
homepage = http://code.dlang.org/;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ThomasMader ];
|
|
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
|
|
};
|
|
}
|
|
|