nixpkgs/pkgs/desktops/gnome-3/misc/gexiv2/default.nix

51 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, meson, ninja, pkgconfig, exiv2, glib, gnome3, gobjectIntrospection, vala }:
let
2018-03-03 01:20:58 +00:00
pname = "gexiv2";
version = "0.10.7";
in
stdenv.mkDerivation rec {
2018-03-03 01:20:58 +00:00
name = "${pname}-${version}";
src = fetchurl {
2018-03-03 01:20:58 +00:00
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
2018-01-30 18:24:52 +00:00
sha256 = "1f7312zygw77ml37i5qilhfvmjm59dn753ax71rcb2jm1p76vgcb";
};
2018-01-30 18:24:52 +00:00
patches = [
# Darwin compatibility (https://bugzilla.gnome.org/show_bug.cgi?id=791941)
2018-01-30 18:24:52 +00:00
(fetchurl {
url = https://bugzilla.gnome.org/attachment.cgi?id=365969;
sha256 = "06w744acgnz3hym7sm8c245yzlg05ldkmwgiz3yz4pp6h72brizj";
})
# GIR & Vala bindings fix (https://bugzilla.gnome.org/show_bug.cgi?id=792431)
(fetchurl {
url = https://bugzilla.gnome.org/attachment.cgi?id=366662;
sha256 = "1ljb2pap5v9z3zhx69ghfyrbl2b62ck35nyn7h5h410d008lcb4v";
})
2018-01-30 18:24:52 +00:00
];
preConfigure = ''
patchShebangs .
'';
nativeBuildInputs = [ meson ninja pkgconfig gobjectIntrospection vala ];
2018-01-30 18:24:52 +00:00
buildInputs = [ glib ];
propagatedBuildInputs = [ exiv2 ];
2018-03-03 01:20:58 +00:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "gnome3.${pname}";
};
};
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Projects/gexiv2;
description = "GObject wrapper around the Exiv2 photo metadata library";
2018-03-03 01:20:58 +00:00
license = licenses.gpl2;
2018-01-30 18:24:52 +00:00
platforms = platforms.unix;
maintainers = gnome3.maintainers;
};
}