summary refs log blame commit diff
path: root/pkgs/development/libraries/goocanvas/default.nix
blob: 4bec18e7eca2c80db374785160250177ef4e5e94 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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"];
  };
}