Skip to content

Commit

Permalink
Feat(pkgs/dmd): 2.108.1 and 2.109.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dukc committed Aug 21, 2024
1 parent fcfbc72 commit d3b9df5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pkgs/dmd/build-status.nix
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ let
};
in
mergeVersions [
(between "2.092.0" "2.107.2" (version: {
(between "2.092.0" latestVersion (version: {
x86_64-linux = {
build = true;
check = true;
Expand All @@ -130,7 +130,7 @@ mergeVersions [
skippedTests = (getInfo version).darwinSkippedTests;
};
}))
(between "2.098.0" "2.107.2" (version: {
(between "2.098.0" latestVersion (version: {
x86_64-darwin = {
build = true;
check = true;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/dmd/generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ stdenv.mkDerivation rec {
# many tests are disbled because they are failing
# NOTE: Purity check is disabled for checkPhase because it doesn't fare well
# with the DMD linker. See https://github.com/NixOS/nixpkgs/issues/97420
checkPhase = ''
checkPhase = (arg: builtins.trace arg arg) ''
runHook preCheck
${lib.optionalString (buildStatus.skippedTests != [ ]) (
lib.concatMapStringsSep "\n" (test: ''rm -v ${test}'') buildStatus.skippedTests
Expand Down
10 changes: 10 additions & 0 deletions pkgs/dmd/supported-source-versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,15 @@
"dmd": "sha256-byWGO13TGzx7RHkFmI2xi1PibIWBZPfvcSYX5990vak=",
"phobos": "sha256-maMEdm52+4cNpHSrd48FRZzAqjmJi5ddEPM52XEnqaM=",
"tools": "sha256-YEBUgJPG/+WN4MnQUNAVftZM0ULxZZzpHoOozXua46U="
},
"2.108.1": {
"dmd": "sha256-RQMmo+ZYp5PDD75mdsohw7XxqnTLH2FBYufqZ217ghw=",
"phobos": "sha256-Dk03koD7VvJVWXhe0nMR3MaldHhXnHoX+X93aJ19hA8=",
"tools": "sha256-YEBUgJPG/+WN4MnQUNAVftZM0ULxZZzpHoOozXua46U="
},
"2.109.1": {
"dmd": "sha256-3nCDPZnb4eQZmhYYxcH6qOmsP8or0KYuzAa5g/C9xdU=",
"phobos": "sha256-73I0k7tCBwe5tl4K6uMs3/nT2JTZ2SppFYzmokS4W5Y=",
"tools": "sha256-Pfj8Kwf5AlcrHhLs5A/0vIFWLZaNR3ro+esbs7oWN9I="
}
}

0 comments on commit d3b9df5

Please sign in to comment.