nixpkgs/pkgs/applications/graphics/pinta/default.nix
Lluís Batlle i Rossell c38cae02ed 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)

svn path=/nixpkgs/trunk/; revision=22362
2010-06-21 18:14:52 +00:00

26 lines
532 B
Nix

{stdenv, fetchgit, mono, gtksharp, pkgconfig}:
stdenv.mkDerivation {
name = "pinta-20100617";
builder = ./builder.sh;
src = fetchgit {
url = http://github.com/jpobst/Pinta.git;
tag = "0.3";
sha256 = "0qvpz9602igjmv8ba6vc4kg9jj3yyw0frl7wgz62hdxiizdfhm2f";
};
makeWrapper = ../../../build-support/make-wrapper/make-wrapper.sh;
makePhase = ''
HOME=`pwd`/tmphome
mkdir -p $HOME
xbuild Pinta.Core/Pinta.Core.csproj /v:diag
'';
buildInputs = [mono gtksharp pkgconfig];
inherit gtksharp;
}