python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / babl / default.nix
bloba09d9579892052ed499cf5fc09d01db87342b192
1 { stdenv
2 , lib
3 , fetchpatch
4 , fetchurl
5 , meson
6 , ninja
7 , pkg-config
8 , gobject-introspection
9 , lcms2
10 , vala
13 stdenv.mkDerivation rec {
14   pname = "babl";
15   version = "0.1.96";
17   outputs = [ "out" "dev" ];
19   src = fetchurl {
20     url = "https://download.gimp.org/pub/babl/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
21     sha256 = "sha256-M2c/5Fmpg/QRJFpJ+B/X8ZZq8eqOypsJWpQMVCuFRfY=";
22   };
24   nativeBuildInputs = [
25     meson
26     ninja
27     pkg-config
28     gobject-introspection
29     vala
30   ];
32   buildInputs = [
33     lcms2
34   ];
36   meta = with lib; {
37     description = "Image pixel format conversion library";
38     homepage = "https://gegl.org/babl/";
39     changelog = "https://gitlab.gnome.org/GNOME/babl/-/blob/BABL_${lib.replaceStrings [ "." ] [ "_" ] version}/NEWS";
40     license = licenses.lgpl3Plus;
41     maintainers = with maintainers; [ jtojnar ];
42     platforms = platforms.unix;
43   };