python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / goocanvasmm / default.nix
blob7642080086562d1024c3e9da33f0178217d18e3c
1 { lib, stdenv, fetchurl, pkg-config, goocanvas2, gtkmm3, gnome }:
3 stdenv.mkDerivation rec {
4   pname = "goocanvasmm";
5   version = "1.90.11";
7   outputs = [ "out" "dev" ];
9   src = fetchurl {
10     url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
11     sha256 = "0vpdfrj59nwzwj8bk4s0h05iyql62pxjzsxh72g3vry07s3i3zw0";
12   };
13   nativeBuildInputs = [ pkg-config ];
14   propagatedBuildInputs = [ gtkmm3 goocanvas2 ];
16   enableParallelBuilding = true;
18   passthru = {
19     updateScript = gnome.updateScript {
20       packageName = pname;
21       attrPath = "goocanvasmm2";
22       versionPolicy = "none"; # stable version has not been released yet, last update 2015
23     };
24   };
26   meta = with lib; {
27     description = "C++ bindings for GooCanvas";
28     homepage = "https://wiki.gnome.org/Projects/GooCanvas";
29     license = licenses.lgpl2;
30     maintainers = with maintainers; [ ];
31     platforms = platforms.unix;
32   };