summary refs log tree commit diff
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-11-29 19:22:28 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-11-29 19:22:28 +0000
commit3bae8e959022d8c4e3d3260c1dc1b1566bd2c33c (patch)
tree09c96e35e24fc5e5dfb188796dabc46790efd851
parent32f2dda5deadc5bae01e852d9e5c1c211a5164c7 (diff)
downloadnixlib-3bae8e959022d8c4e3d3260c1dc1b1566bd2c33c.tar
nixlib-3bae8e959022d8c4e3d3260c1dc1b1566bd2c33c.tar.gz
nixlib-3bae8e959022d8c4e3d3260c1dc1b1566bd2c33c.tar.bz2
nixlib-3bae8e959022d8c4e3d3260c1dc1b1566bd2c33c.tar.lz
nixlib-3bae8e959022d8c4e3d3260c1dc1b1566bd2c33c.tar.xz
nixlib-3bae8e959022d8c4e3d3260c1dc1b1566bd2c33c.tar.zst
nixlib-3bae8e959022d8c4e3d3260c1dc1b1566bd2c33c.zip
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
-rw-r--r--pkgs/applications/graphics/cinepaint/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/cinepaint/default.nix b/pkgs/applications/graphics/cinepaint/default.nix
index df0fb5b971ee..b19ffdb337b6 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;
   };
 }