diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2025-08-02 14:40:17 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2025-08-08 22:42:51 -0400 |
commit | c1b30f6e6227d3ef26480e716751c75c9572e2b7 (patch) | |
tree | 21bbaf12f7c363f2c5658b490b47ff5243aa85cf /nix-overlays/dub | |
parent | imports, make line searchable (diff) |
Diffstat (limited to 'nix-overlays/dub')
-rw-r--r-- | nix-overlays/dub/package.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nix-overlays/dub/package.nix b/nix-overlays/dub/package.nix index 1ac054c..4d63f2d 100644 --- a/nix-overlays/dub/package.nix +++ b/nix-overlays/dub/package.nix @@ -13,7 +13,7 @@ assert dcompiler != null; stdenv.mkDerivation (finalAttrs: { pname = "dub"; - version = "1.39.0"; + version = "1.40.0"; enableParallelBuilding = true; @@ -21,7 +21,7 @@ stdenv.mkDerivation (finalAttrs: { owner = "dlang"; repo = "dub"; rev = "v${finalAttrs.version}"; - hash = "sha256-73b15A9+hClD6IbuxTy9QZKpTKjUFYBuqGOclUyhrnM="; + hash = "sha256-OirchEKf66gis70gCSTOYcrHLyHhCsyt/rTEGT83Vcc="; }; postPatch = '' @@ -70,6 +70,7 @@ stdenv.mkDerivation (finalAttrs: { rm -rf test/pr2642-cache-db # added to build v1.34.0 rm -rf test/pr2644-describe-artifact-path # added to build v1.36.0 rm -rf test/pr2647-build-deep # added to build v1.36.0 + rm -rf test/issue2698-cimportpaths-broken-with-dmd-ldc # added to build v1.40.0 ./test/run-unittest.sh runHook postCheck |