From 3bae8e959022d8c4e3d3260c1dc1b1566bd2c33c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sun, 29 Nov 2009 19:22:28 +0000 Subject: [PATCH] Fixing the cinepaint expression. Somehow I wrote the wrong date in fetchcvs, when I commited it, so it has been a expression that only worked for me, I think, because I had done the proper fetchcvs previously. svn path=/nixpkgs/trunk/; revision=18699 --- pkgs/applications/graphics/cinepaint/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/cinepaint/default.nix b/pkgs/applications/graphics/cinepaint/default.nix index df0fb5b971e..b19ffdb337b 100644 --- a/pkgs/applications/graphics/cinepaint/default.nix +++ b/pkgs/applications/graphics/cinepaint/default.nix @@ -11,8 +11,8 @@ stdenv.mkDerivation { src = fetchcvs { cvsRoot = ":pserver:anonymous@cinepaint.cvs.sourceforge.net:/cvsroot/cinepaint"; module = "cinepaint-project"; - date = "2004-03-01"; - sha256 = "bf6dc04f3ea2094b7ef6f87f40f2c90d75a557e40a773f8eb76e8a71f14362cf"; + date = "2008-11-06"; + sha256 = "f5ac249628ffe04349d1bb3b1e078be0cda7575dd71d12ae74143baa006acb6d"; }; buildInputs = [ cmake pkgconfig gtk freetype fontconfig lcms fltk flex libtiff @@ -35,5 +35,7 @@ stdenv.mkDerivation { homepage = http://www.cinepaint.org/; license = "free"; description = "Image editor which supports images over 8bpp and ICC profiles"; + maintainers = with stdenv.lib.maintainers; [viric]; + platforms = with stdenv.lib.platforms; linux; }; }