linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / babl / default.nix
blobd6e1d75437effeb02c46d111c1ba4fc28799f32e
1 { lib, stdenv
2 , fetchurl
3 , meson
4 , ninja
5 , pkg-config
6 , gobject-introspection
7 , lcms2
8 , vala
9 }:
11 stdenv.mkDerivation rec {
12   pname = "babl";
13   version = "0.1.86";
15   outputs = [ "out" "dev" ];
17   src = fetchurl {
18     url = "https://download.gimp.org/pub/babl/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
19     sha256 = "sha256-Cz9ZUVmtGyFs1ynAUEw6X2z3gMZB9Nxj/BZPPAOCyPA=";
20   };
22   nativeBuildInputs = [
23     meson
24     ninja
25     pkg-config
26     gobject-introspection
27     vala
28   ];
30   buildInputs = [
31     lcms2
32   ];
34   meta = with lib; {
35     description = "Image pixel format conversion library";
36     homepage = "https://gegl.org/babl/";
37     license = licenses.lgpl3Plus;
38     maintainers = with maintainers; [ jtojnar ];
39     platforms = platforms.unix;
40   };