1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

added goocanvas

svn path=/nixpkgs/trunk/; revision=13552
This commit is contained in:
Marc Weber 2008-12-02 12:28:13 +00:00
parent fd3148dd5e
commit 0b49861c7b
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,17 @@
args:
args.stdenv.mkDerivation {
name = "goocanvas-0.10";
src = args.fetchurl {
url = mirror://sourceforge/goocanvas/goocanvas-0.10.tar.gz;
sha256 = "0b49szbr3n7vpavly9w17ipa8q3ydicdcd177vxbdvbsnvg7aqp9";
};
buildInputs =(with args; [gtk cairo glib pkgconfig]);
meta = {
description = "canvas widget for GTK+ using the cairo 2D library";
homepage = http://goocanvas.sourceforge.net/;
license = ["GPL" "LGPL"];
};
}

View file

@ -2979,6 +2979,11 @@ let
inherit fetchurl stdenv m4;
};
goocanvas = import ../developement/libraries/goocanvas {
inherit fetchurl stdenv pkgconfig cairo;
inherit (gnome) gtk glib;
};
#GMP ex-satellite, so better keep it near gmp
mpfr = import ../development/libraries/mpfr {
inherit fetchurl stdenv gmp;