2021-11-24 05:12:55 +00:00
|
|
|
{stdenv, lib, fetchFromGitHub, fetchpatch, ldc, curl}:
|
2017-08-19 15:20:34 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "dtools";
|
2021-03-06 15:43:24 +00:00
|
|
|
version = "2.095.1";
|
2017-08-19 15:20:34 +00:00
|
|
|
|
2021-11-24 05:12:55 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dlang";
|
|
|
|
repo = "tools";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256:0rdfk3mh3fjrb0h8pr8skwlq6ac9hdl1fkrkdl7n1fa2806b740b";
|
|
|
|
name = "dtools";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
2021-11-24 08:05:33 +00:00
|
|
|
# part of https://github.com/dlang/tools/pull/441
|
|
|
|
url = "https://github.com/dlang/tools/commit/6c6a042d1b08e3ec1790bd07a7f69424625ee866.patch"; # Fix LDC arm64 build
|
2021-11-24 05:12:55 +00:00
|
|
|
sha256 = "sha256-x6EclTYN1Y5FG57KLhbBK0BZicSYcZoWO7MTVcP4T18=";
|
2018-01-06 22:28:07 +00:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-03-06 15:43:24 +00:00
|
|
|
nativeBuildInputs = [ ldc ];
|
2017-08-19 15:20:34 +00:00
|
|
|
buildInputs = [ curl ];
|
|
|
|
|
2018-01-06 22:28:07 +00:00
|
|
|
makeCmd = ''
|
2021-03-06 15:43:24 +00:00
|
|
|
make -f posix.mak all DMD_DIR=dmd DMD=${ldc.out}/bin/ldmd2 CC=${stdenv.cc}/bin/cc
|
2018-01-06 22:28:07 +00:00
|
|
|
'';
|
|
|
|
|
2017-08-19 15:20:34 +00:00
|
|
|
buildPhase = ''
|
2018-01-06 22:28:07 +00:00
|
|
|
$makeCmd
|
2017-08-19 15:20:34 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
checkPhase = ''
|
2018-01-06 22:28:07 +00:00
|
|
|
$makeCmd test_rdmd
|
2017-08-19 15:20:34 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2018-01-06 22:28:07 +00:00
|
|
|
$makeCmd INSTALL_DIR=$out install
|
2021-01-21 00:55:55 +00:00
|
|
|
'';
|
2017-08-19 15:20:34 +00:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2017-08-19 15:20:34 +00:00
|
|
|
description = "Ancillary tools for the D programming language compiler";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/dlang/tools";
|
2017-08-19 15:20:34 +00:00
|
|
|
license = lib.licenses.boost;
|
2017-08-27 17:07:15 +00:00
|
|
|
maintainers = with maintainers; [ ThomasMader ];
|
2021-01-23 12:26:19 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2017-08-19 15:20:34 +00:00
|
|
|
};
|
|
|
|
}
|