nixpkgs/pkgs/desktops/mate/eom/default.nix
R. RyanTM 2934f16553 mate.eom: 1.20.0 -> 1.20.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/eom/versions.

These checks were done:

- built on NixOS
- /nix/store/lxzkljx1yfkgqxpqgrf710ic9iq4qv3z-eom-1.20.1/bin/eom passed the binary check.
- /nix/store/lxzkljx1yfkgqxpqgrf710ic9iq4qv3z-eom-1.20.1/bin/.eom-wrapped passed the binary check.
- 2 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 1.20.1 with grep in /nix/store/lxzkljx1yfkgqxpqgrf710ic9iq4qv3z-eom-1.20.1
- directory tree listing: https://gist.github.com/b79b00c09fe3737a787425500dfcaf9e
- du listing: https://gist.github.com/4ff844a1cc38d84e737d23f9140417ca
2018-06-19 11:55:30 -07:00

41 lines
1,015 B
Nix

{ stdenv, fetchurl, pkgconfig, intltool, itstool, dbus-glib, exempi, lcms2, libexif, libjpeg, librsvg, libxml2, shared-mime-info, gnome3, mate, hicolor-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "eom-${version}";
version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
sha256 = "0z9l96j0q637hw2mkcc2w737acl7g2c5brgrlk4h73hjamfmsdrm";
};
nativeBuildInputs = [
pkgconfig
intltool
itstool
wrapGAppsHook
];
buildInputs = [
dbus-glib
exempi
lcms2
libexif
libjpeg
librsvg
libxml2
shared-mime-info
gnome3.gtk
gnome3.libpeas
mate.mate-desktop
hicolor-icon-theme
];
meta = {
description = "An image viewing and cataloging program for the MATE desktop";
homepage = http://mate-desktop.org;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.romildo ];
};
}