about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorCharles Cooper <chevil@gmail.com>2015-04-13 16:39:26 -0700
committerCharles Cooper <chevil@gmail.com>2015-04-14 10:46:16 -0700
commitba206b550aa69576f0fe5368e193211dcdf2e85e (patch)
tree8ff4a053c4b9a94d5dc2b2a1972dc885b250a93c /pkgs/development/tools
parent163d6a13ee9b9486337714d541f363f64ce87f88 (diff)
downloadnixlib-ba206b550aa69576f0fe5368e193211dcdf2e85e.tar
nixlib-ba206b550aa69576f0fe5368e193211dcdf2e85e.tar.gz
nixlib-ba206b550aa69576f0fe5368e193211dcdf2e85e.tar.bz2
nixlib-ba206b550aa69576f0fe5368e193211dcdf2e85e.tar.lz
nixlib-ba206b550aa69576f0fe5368e193211dcdf2e85e.tar.xz
nixlib-ba206b550aa69576f0fe5368e193211dcdf2e85e.tar.zst
nixlib-ba206b550aa69576f0fe5368e193211dcdf2e85e.zip
dub update to v0.9.23
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/build-managers/dub/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/build-managers/dub/default.nix b/pkgs/development/tools/build-managers/dub/default.nix
index dd0b07912c88..d92cca88d5f5 100644
--- a/pkgs/development/tools/build-managers/dub/default.nix
+++ b/pkgs/development/tools/build-managers/dub/default.nix
@@ -1,11 +1,11 @@
-{stdenv, fetchurl, curl, dmd, gcc, unzip}:
+{stdenv, fetchurl, curl, dmd, gcc, unzip }:
 
 stdenv.mkDerivation {
-  name = "dub-0.9.22";
+  name = "dub-0.9.23";
 
   src = fetchurl {
-    url = "https://github.com/rejectedsoftware/dub/archive/v0.9.22.tar.gz";
-    sha256 = "0vhn96ybbsfflldlbyc17rmwb7bz21slbm189k5glyfr9nnp4cir";
+    url = "https://github.com/D-Programming-Language/dub/archive/v0.9.23.tar.gz";
+    sha256 = "7ecbce89c0e48b43705d7c48003394f383556f33562c4b5d884a786cd85814d1";
   };
 
   buildInputs = [ unzip curl ];