nixpkgs/pkgs/development/libraries/goocanvas/default.nix
Bjørn Forsman b9f30bdc20 goocanvas: 0.10 -> 1.0 (fixes build)
I'm not updating to the 2.x version yet, because the only dependee of
this package is 'shutter' (which I'm about to package) and it doesn't
support 2.x.
2016-05-26 10:31:27 +02:00

21 lines
559 B
Nix

{ stdenv, fetchurl, gtk, cairo, glib, pkgconfig }:
stdenv.mkDerivation rec {
majVersion = "1.0";
version = "${majVersion}.0";
name = "goocanvas-${version}";
src = fetchurl {
url = "mirror://gnome/sources/goocanvas/${majVersion}/${name}.tar.bz2";
sha256 = "07kicpcacbqm3inp7zq32ldp95mxx4kfxpaazd0x5jk7hpw2w1qw";
};
buildInputs = [ gtk cairo glib pkgconfig ];
meta = {
description = "Canvas widget for GTK+ based on the the Cairo 2D library";
homepage = http://goocanvas.sourceforge.net/;
license = ["GPL" "LGPL"];
};
}