summary refs log tree commit diff
path: root/pkgs/development/libraries/boehm-gc/default.nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2008-09-05 08:03:44 +0000
committerLudovic Courtès <ludo@gnu.org>2008-09-05 08:03:44 +0000
commitdeac729a8c9febf4be955f6ff84a2aa461679cff (patch)
tree2b3e3afad127064210000228fa080ccc1b5a1441 /pkgs/development/libraries/boehm-gc/default.nix
parentbea666b9d1c35e4eb4d390d1a4e6bb46949c2921 (diff)
downloadnixpkgs-deac729a8c9febf4be955f6ff84a2aa461679cff.tar
nixpkgs-deac729a8c9febf4be955f6ff84a2aa461679cff.tar.gz
nixpkgs-deac729a8c9febf4be955f6ff84a2aa461679cff.tar.bz2
nixpkgs-deac729a8c9febf4be955f6ff84a2aa461679cff.tar.lz
nixpkgs-deac729a8c9febf4be955f6ff84a2aa461679cff.tar.xz
nixpkgs-deac729a8c9febf4be955f6ff84a2aa461679cff.tar.zst
nixpkgs-deac729a8c9febf4be955f6ff84a2aa461679cff.zip
libgc 7.1.
svn path=/nixpkgs/trunk/; revision=12804
Diffstat (limited to 'pkgs/development/libraries/boehm-gc/default.nix')
-rw-r--r--pkgs/development/libraries/boehm-gc/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/development/libraries/boehm-gc/default.nix b/pkgs/development/libraries/boehm-gc/default.nix
index ba81b16bcf6..c197662d30a 100644
--- a/pkgs/development/libraries/boehm-gc/default.nix
+++ b/pkgs/development/libraries/boehm-gc/default.nix
@@ -1,11 +1,16 @@
 {stdenv, fetchurl}:
 
+let version = "7.1"; in
 stdenv.mkDerivation {
-  name = "boehm-gc-7.0";
+  name = "boehm-gc-${version}";
+
   src = fetchurl {
-    url = http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-7.0.tar.gz;
-    sha256 = "0nqy0462ainp79fjmx5lgr89s2d433fggr3n9d1p09xq77lwc2nj";
+    url = "http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-${version}.tar.gz";
+    sha256 = "0c5zrsdw0rsli06lahcqwwz0prgah340fhfg7ggfgvz3iw1gdkp3";
   };
+
+  doCheck = true;
+
   meta = {
     description = "A garbage collector for C and C++";
     homepage = http://www.hpl.hp.com/personal/Hans_Boehm/gc/;