mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
goocanvas2: init at 2.2.1
This commit is contained in:
parent
142b4173fa
commit
82653d9ca0
29
pkgs/development/libraries/goocanvas/2.x.nix
Normal file
29
pkgs/development/libraries/goocanvas/2.x.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchurl, pkgconfig, gettext, gtk-doc, gobjectIntrospection, python2, gtk3, cairo, glib }:
|
||||
|
||||
let
|
||||
version = "2.0.4";
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "goocanvas-${version}";
|
||||
|
||||
outputs = [ "out" "dev" "devdoc" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/goocanvas/2.0/${name}.tar.xz";
|
||||
sha256 = "141fm7mbqib0011zmkv3g8vxcjwa7hypmq71ahdyhnj2sjvy4a67";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig gettext gtk-doc python2 ];
|
||||
buildInputs = [ gtk3 cairo glib ];
|
||||
|
||||
configureFlags = [
|
||||
"--disable-python"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Canvas widget for GTK+ based on the the Cairo 2D library";
|
||||
homepage = https://wiki.gnome.org/Projects/GooCanvas;
|
||||
license = licenses.lgpl2;
|
||||
maintainers = with maintainers; [ ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -8940,6 +8940,7 @@ with pkgs;
|
||||
};
|
||||
|
||||
goocanvas = callPackage ../development/libraries/goocanvas { };
|
||||
goocanvas2 = callPackage ../development/libraries/goocanvas/2.x.nix { };
|
||||
|
||||
google-gflags = callPackage ../development/libraries/google-gflags { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user