about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/li/libopenraw/package.nix
blob: 80038929a3f1e783e1d396ba9157b59300da0923 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchurl, boost, gdk-pixbuf, glib, libjpeg, libxml2, lib, pkg-config
, cargo, rustc }:

stdenv.mkDerivation rec {
  pname = "libopenraw";
  version = "0.3.7";

  src = fetchurl {
    url = "https://libopenraw.freedesktop.org/download/libopenraw-${version}.tar.bz2";
    hash = "sha256-VRWyYQNh7zRYC2uXZjURn23ttPCnnVRmL6X+YYakXtU=";
  };

  nativeBuildInputs = [ pkg-config cargo rustc ];

  buildInputs = [ boost gdk-pixbuf glib libjpeg libxml2 ];

  postPatch = ''
    sed -i configure{,.ac} \
      -e "s,GDK_PIXBUF_DIR=.*,GDK_PIXBUF_DIR=$out/lib/gdk-pixbuf-2.0/2.10.0/loaders,"
  '';

  meta = with lib; {
    description = "RAW camerafile decoding library";
    homepage = "https://libopenraw.freedesktop.org";
    license = licenses.lgpl3Plus;
    platforms = [ "x86_64-linux" "aarch64-linux" ];
    maintainers = [ maintainers.struan ];
  };
}