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:
parent
fd3148dd5e
commit
0b49861c7b
17
pkgs/developement/libraries/goocanvas/default.nix
Normal file
17
pkgs/developement/libraries/goocanvas/default.nix
Normal 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"];
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue