summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-12-11 12:13:24 +0100
committerVladimír Čunát <vcunat@gmail.com>2013-12-11 12:14:01 +0100
commit4855b0a22eb957740e7c1e0ead39ca3984f98d33 (patch)
tree0a6b3aace9e5e9e6c1b5aa6685970864ec8a8503
parent900786ab3732caa371cbfbce49fcf59cb075da58 (diff)
downloadnixpkgs-4855b0a22eb957740e7c1e0ead39ca3984f98d33.tar
nixpkgs-4855b0a22eb957740e7c1e0ead39ca3984f98d33.tar.gz
nixpkgs-4855b0a22eb957740e7c1e0ead39ca3984f98d33.tar.bz2
nixpkgs-4855b0a22eb957740e7c1e0ead39ca3984f98d33.tar.lz
nixpkgs-4855b0a22eb957740e7c1e0ead39ca3984f98d33.tar.xz
nixpkgs-4855b0a22eb957740e7c1e0ead39ca3984f98d33.tar.zst
nixpkgs-4855b0a22eb957740e7c1e0ead39ca3984f98d33.zip
dragonegg: fix build via update to 3.3
-rw-r--r--pkgs/development/compilers/llvm/dragonegg.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/llvm/dragonegg.nix b/pkgs/development/compilers/llvm/dragonegg.nix
index 42d337b8eac..737b9533a08 100644
--- a/pkgs/development/compilers/llvm/dragonegg.nix
+++ b/pkgs/development/compilers/llvm/dragonegg.nix
@@ -1,12 +1,12 @@
 {stdenv, fetchurl, llvm, gmp, mpfr, mpc}:
 
 stdenv.mkDerivation rec {
-  version = "3.2";
+  version = "3.3";
   name = "dragonegg-${version}";
 
   src = fetchurl {
     url = "http://llvm.org/releases/${version}/${name}.src.tar.gz";
-    sha256 = "0jfxhqy3177drlvzgp6m0kwnbfyzrd4vzidnxjhck8a7a69a26bg";
+    sha256 = "1kfryjaz5hxh3q6m50qjrwnyjb3smg2zyh025lhz9km3x4kshlri";
   };
 
   # The gcc the plugin will be built for (the same used building dragonegg)