nixpkgs/pkgs/development/libraries/libiptcdata/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
934 B
Nix
Raw Normal View History

2022-08-07 18:32:00 +00:00
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, libiconv
, libintl
}:
stdenv.mkDerivation rec {
2021-06-22 13:21:29 +00:00
pname = "libiptcdata";
2022-08-07 18:32:00 +00:00
version = "1.0.5";
src = fetchFromGitHub {
owner = "ianw";
repo = pname;
rev = "release_${builtins.replaceStrings ["."] ["_"] version}";
sha256 = "sha256-ZjokepDAHiSEwXrkvM9qUAPcpIiRQoOsv7REle7roPU=";
};
postPatch = ''
# gtk-doc doesn't build without network access
sed -i '/GTK_DOC_CHECK/d;/docs/d' configure.ac
sed -i 's/docs//' Makefile.am
'';
nativeBuildInputs = [
autoreconfHook
];
2022-08-01 08:08:54 +00:00
buildInputs = lib.optionals stdenv.isDarwin [
libiconv
2022-08-07 18:32:00 +00:00
libintl
2022-08-01 08:08:54 +00:00
];
2022-08-07 18:32:00 +00:00
meta = with lib; {
description = "Library for reading and writing the IPTC metadata in images and other files";
2022-08-07 18:32:00 +00:00
homepage = "https://github.com/ianw/libiptcdata";
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ wegank ];
};
}