From deac729a8c9febf4be955f6ff84a2aa461679cff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 5 Sep 2008 08:03:44 +0000 Subject: libgc 7.1. svn path=/nixpkgs/trunk/; revision=12804 --- pkgs/development/libraries/boehm-gc/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'pkgs/development/libraries/boehm-gc') diff --git a/pkgs/development/libraries/boehm-gc/default.nix b/pkgs/development/libraries/boehm-gc/default.nix index ba81b16bcf6e..c197662d30a0 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/; -- cgit v1.2.3