summary refs log tree commit diff
path: root/pkgs/development/compilers/clean/default.nix
diff options
context:
space:
mode:
authorKarn Kallio <tierpluspluslists@gmail.com>2011-12-27 01:48:57 +0000
committerKarn Kallio <tierpluspluslists@gmail.com>2011-12-27 01:48:57 +0000
commit2ae07a853fbd2664b260f9353621983140a40886 (patch)
tree148f26fe8e4b08b877d4e5f05052c0a84e61b74d /pkgs/development/compilers/clean/default.nix
parent1d7bc50e9ac5ed00db44e4f3387fdcd8de892e5e (diff)
downloadnixpkgs-2ae07a853fbd2664b260f9353621983140a40886.tar
nixpkgs-2ae07a853fbd2664b260f9353621983140a40886.tar.gz
nixpkgs-2ae07a853fbd2664b260f9353621983140a40886.tar.bz2
nixpkgs-2ae07a853fbd2664b260f9353621983140a40886.tar.lz
nixpkgs-2ae07a853fbd2664b260f9353621983140a40886.tar.xz
nixpkgs-2ae07a853fbd2664b260f9353621983140a40886.tar.zst
nixpkgs-2ae07a853fbd2664b260f9353621983140a40886.zip
Clean version 2.4
svn path=/nixpkgs/trunk/; revision=31107
Diffstat (limited to 'pkgs/development/compilers/clean/default.nix')
-rw-r--r--pkgs/development/compilers/clean/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/compilers/clean/default.nix b/pkgs/development/compilers/clean/default.nix
index fa61f8bfc75..bd051a95699 100644
--- a/pkgs/development/compilers/clean/default.nix
+++ b/pkgs/development/compilers/clean/default.nix
@@ -1,16 +1,16 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "clean-2.3";
+  name = "clean-2.4";
 
   src =
     if stdenv.system == "i686-linux" then (fetchurl {
-      url = "http://clean.cs.ru.nl/download/Clean23/linux/clean2.3_boot.tar.gz";
-      sha256 = "0rrjpqdbqwbx7n8v35wi3wpm6lpv9zd1n5q50byb2h0ljqw31j9h";
+      url = "http://clean.cs.ru.nl/download/Clean24/linux/clean2.4_boot.tar.gz";
+      sha256 = "1w8vvmkwzq8g51639r62apcy75sj69nm08082a34xvqm9ymfgkq5";
     })
     else if stdenv.system == "x86_64-linux" then (fetchurl {
-        url = "http://clean.cs.ru.nl/download/Clean23/linux/clean2.3_64_boot.tar.gz";
-        sha256 = "0bvkaiwcaa1p6h1bl4bgnia1yd0j8nq6sb1yiwar74y2m1wwmjqj";
+        url = "http://clean.cs.ru.nl/download/Clean24/linux/clean2.4_64_boot.tar.gz";
+        sha256 = "08gsa1pjl5wyzh4ah8ccfx8a7mdcn6ycsn1lzkrr9adygv1gmm7r";
     })
     else throw "Architecture not supported";