Author: viric
Date: 2010-06-21 18:14:52 +0000 (Mon, 21 Jun 2010)
New Revision: 22362

You can view the changes in this commit at:
   https://svn.nixos.org/viewvc/nix?rev=22362&view=rev

Modified:
   nixpkgs/trunk/pkgs/applications/graphics/pinta/default.nix

Log:
pinta-related changes that should go in pair with a change I just commited 
related to aufs
(So, not related to pinta, but... what to do. nixpkgs has to evaluate)

Changes:

Modified: nixpkgs/trunk/pkgs/applications/graphics/pinta/default.nix
===================================================================
--- nixpkgs/trunk/pkgs/applications/graphics/pinta/default.nix  2010-06-21 
17:51:52 UTC (rev 22361)
+++ nixpkgs/trunk/pkgs/applications/graphics/pinta/default.nix  2010-06-21 
18:14:52 UTC (rev 22362)
@@ -1,4 +1,4 @@
-{stdenv, fetchgit, mono, gtksharp, pkgconfig, automake, autoconf}:
+{stdenv, fetchgit, mono, gtksharp, pkgconfig}:
 
 stdenv.mkDerivation {
   name = "pinta-20100617";
@@ -7,23 +7,19 @@
 
   src = fetchgit {
     url = http://github.com/jpobst/Pinta.git;
-    rev = "c8ce06fc14a42083749b6400ed57d3883820d368";
-    sha256 = 
"9df96b69b08567045e9100e228047d7711db28705bd2badc0afc316e63c15505";
+    tag = "0.3";
+    sha256 = "0qvpz9602igjmv8ba6vc4kg9jj3yyw0frl7wgz62hdxiizdfhm2f";
   };
 
   makeWrapper = ../../../build-support/make-wrapper/make-wrapper.sh;
 
-  configurePhase = ''
-    sh ./autogen.sh --prefix=$out
-  '';
-
   makePhase = ''
     HOME=`pwd`/tmphome
     mkdir -p $HOME
     xbuild Pinta.Core/Pinta.Core.csproj /v:diag
   '';
 
-  buildInputs = [mono gtksharp pkgconfig automake autoconf];
+  buildInputs = [mono gtksharp pkgconfig];
 
   inherit gtksharp;
 }

_______________________________________________
nix-commits mailing list
nix-comm...@cs.uu.nl
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to