From 8f85602506b8a9a5765b7689f4810773e482cb49 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 12 Feb 2009 19:25:10 +0000 Subject: [PATCH] * libcaca: updated to the latest version to make it work on GCC 4.3. svn path=/nixpkgs/branches/stdenv-updates/; revision=14048 --- .../development/libraries/libcaca/default.nix | 20 ++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/pkgs/development/libraries/libcaca/default.nix b/pkgs/development/libraries/libcaca/default.nix index b7b13f54cc85..4c11a3a1fe32 100644 --- a/pkgs/development/libraries/libcaca/default.nix +++ b/pkgs/development/libraries/libcaca/default.nix @@ -1,18 +1,20 @@ {stdenv, fetchurl, ncurses}: stdenv.mkDerivation rec { - name = "libcaca-0.99-beta13b"; + name = "libcaca-0.99.beta16"; + src = fetchurl { - name = "${name}.tar.gz"; - url = http://libcaca.zoy.org/attachment/wiki/libcaca/libcaca-0.99.beta13b.tar.gz?format=raw; - sha256 = "0xy8pcnljnj5la97bzbwwyzyqa7dr3v9cyw8gdjzdfgqywvac1vg"; + url = "http://caca.zoy.org/raw-attachment/wiki/libcaca/${name}.tar.gz"; + sha256 = "1k2anqc9jxvlyar6ximf9l55xzzhgwdbjbclpj64vg6lpqf96k6a"; }; + configureFlags = "--disable-x11 --disable-imlib2 --disable-doc"; + propagatedBuildInputs = [ncurses]; - meta = { - homepage = http://libcaca.zoy.org/; - description = "A graphics library that outputs text instead of pixels."; - license = "WTFPL"; # http://sam.zoy.org/wtfpl/ - }; + meta = { + homepage = http://libcaca.zoy.org/; + description = "A graphics library that outputs text instead of pixels"; + license = "WTFPL"; # http://sam.zoy.org/wtfpl/ + }; }