goocanvas3: init at 3.0.0
This commit is contained in:
parent
4e0e49400a
commit
7e36d73a31
2 changed files with 50 additions and 0 deletions
49
pkgs/development/libraries/goocanvas/3.x.nix
Normal file
49
pkgs/development/libraries/goocanvas/3.x.nix
Normal file
|
@ -0,0 +1,49 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, pkg-config
|
||||
, gettext
|
||||
, gobject-introspection
|
||||
, gtk-doc
|
||||
, python3
|
||||
, cairo
|
||||
, gtk3
|
||||
, glib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "goocanvas";
|
||||
version = "3.0.0";
|
||||
|
||||
outputs = [ "out" "dev" "devdoc" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/goocanvas/${lib.versions.majorMinor version}/goocanvas-${version}.tar.xz";
|
||||
sha256 = "06j05g2lmwvklmv51xsb7gm7rszcarhm01sal41jfp0qzrbpa2k7";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
gettext
|
||||
gobject-introspection
|
||||
gtk-doc
|
||||
python3
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
cairo
|
||||
gtk3
|
||||
glib
|
||||
];
|
||||
|
||||
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR = "$(dev)/share/gir-1.0";
|
||||
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR = "$(out)/lib/girepository-1.0";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Canvas widget for GTK based on the the Cairo 2D library";
|
||||
homepage = "https://wiki.gnome.org/Projects/GooCanvas";
|
||||
license = licenses.lgpl2; # https://gitlab.gnome.org/GNOME/goocanvas/-/issues/12
|
||||
maintainers = with maintainers; [ bobby285271 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -15617,6 +15617,7 @@ in
|
|||
|
||||
goocanvas = callPackage ../development/libraries/goocanvas { };
|
||||
goocanvas2 = callPackage ../development/libraries/goocanvas/2.x.nix { };
|
||||
goocanvas3 = callPackage ../development/libraries/goocanvas/3.x.nix { };
|
||||
goocanvasmm2 = callPackage ../development/libraries/goocanvasmm { };
|
||||
|
||||
gflags = callPackage ../development/libraries/gflags { };
|
||||
|
|
Loading…
Reference in a new issue