nixpkgs/pkgs/development/tools/dtools/default.nix

62 lines
1.3 KiB
Nix
Raw Normal View History

{stdenv, lib, fetchFromGitHub, dmd, curl}:
stdenv.mkDerivation rec {
pname = "dtools";
2019-03-30 12:33:49 +03:00
version = "2.085.1";
2018-01-07 01:28:07 +03:00
srcs = [
(fetchFromGitHub {
owner = "dlang";
repo = "dmd";
rev = "v${version}";
2019-03-30 12:33:49 +03:00
sha256 = "0ccidfcawrcwdpfjwjiln5xwr4ffp8i2hwx52p8zn3xmc5yxm660";
2018-01-07 01:28:07 +03:00
name = "dmd";
})
(fetchFromGitHub {
owner = "dlang";
repo = "tools";
rev = "v${version}";
2019-03-30 12:33:49 +03:00
sha256 = "1x85w4k2zqgv2bjbvhschxdc6kq8ygp89h499cy8rfqm6q23g0ws";
2018-01-07 01:28:07 +03:00
name = "dtools";
})
];
sourceRoot = ".";
postUnpack = ''
mv dmd dtools
cd dtools
2019-02-17 12:48:00 +03:00
substituteInPlace posix.mak --replace "\$(DMD) \$(DFLAGS) -unittest -main -run rdmd.d" ""
2018-01-07 01:28:07 +03:00
'';
nativeBuildInputs = [ dmd ];
buildInputs = [ curl ];
2018-01-07 01:28:07 +03:00
makeCmd = ''
2018-02-10 12:49:17 +03:00
make -f posix.mak DMD_DIR=dmd DMD=${dmd.out}/bin/dmd CC=${stdenv.cc}/bin/cc
2018-01-07 01:28:07 +03:00
'';
buildPhase = ''
2018-01-07 01:28:07 +03:00
$makeCmd
'';
doCheck = true;
checkPhase = ''
2018-01-07 01:28:07 +03:00
$makeCmd test_rdmd
'';
installPhase = ''
2018-01-07 01:28:07 +03:00
$makeCmd INSTALL_DIR=$out install
'';
2017-08-27 20:07:15 +03:00
meta = with stdenv.lib; {
description = "Ancillary tools for the D programming language compiler";
homepage = https://github.com/dlang/tools;
license = lib.licenses.boost;
2017-08-27 20:07:15 +03:00
maintainers = with maintainers; [ ThomasMader ];
platforms = stdenv.lib.platforms.unix;
};
}