Merge master into staging-next

This commit is contained in:
github-actions[bot] 2021-04-25 12:06:10 +00:00 committed by GitHub
commit a5f2aae9f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,20 +1,23 @@
{ lib, stdenv, fetchurl, pkg-config, libexif, popt, libintl }: { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libexif, popt, libintl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "exif-0.6.21"; pname = "exif";
version = "0.6.22";
src = fetchurl { src = fetchFromGitHub {
url = "mirror://sourceforge/libexif/${name}.tar.bz2"; owner = "libexif";
sha256 = "1zb9hwdl783d4vd2s2rw642hg8hd6n0mfp6lrbiqmp9jmhlq5rsr"; repo = pname;
rev = "${pname}-${builtins.replaceStrings ["."] ["_"] version}-release";
sha256 = "1xlb1gdwxm3rmw7vlrynhvjp9dkwmvw23mxisdbdmma7ah2nda3i";
}; };
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ libexif popt libintl ]; buildInputs = [ libexif popt libintl ];
meta = with lib; { meta = with lib; {
homepage = "https://libexif.github.io"; homepage = "https://libexif.github.io";
description = "A utility to read and manipulate EXIF data in digital photographs"; description = "A utility to read and manipulate EXIF data in digital photographs";
platforms = platforms.unix; platforms = platforms.unix;
license = licenses.lgpl21; license = licenses.lgpl21Plus;
}; };
} }