2018-02-13 23:44:07 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libxml2, libsecret, poppler, itstool, hicolor_icon_theme, mate, wrapGAppsHook }:
|
2017-06-18 11:39:59 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "atril-${version}";
|
2018-02-14 02:22:51 +01:00
|
|
|
version = "1.20.0";
|
2017-06-18 11:39:59 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-02-13 23:44:07 +01:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
2018-02-14 02:22:51 +01:00
|
|
|
sha256 = "1639jxcdhcn5wvb4gj9xncdj5d5c3rnyydwwsgqj66cmfmb53l1n";
|
2017-06-18 11:39:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
|
|
|
itstool
|
|
|
|
libsecret
|
|
|
|
libxml2
|
|
|
|
poppler
|
2018-02-13 23:44:07 +01:00
|
|
|
mate.caja
|
|
|
|
mate.mate-desktop
|
2017-09-01 22:27:24 +02:00
|
|
|
hicolor_icon_theme
|
2017-06-18 11:39:59 +02:00
|
|
|
];
|
|
|
|
|
2018-01-08 19:00:54 +01:00
|
|
|
makeFlags = [ "cajaextensiondir=$$out/lib/caja/extensions-2.0" ];
|
|
|
|
|
2017-06-18 11:39:59 +02:00
|
|
|
meta = {
|
|
|
|
description = "A simple multi-page document viewer for the MATE desktop";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://mate-desktop.org;
|
2017-06-18 11:39:59 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
|
|
|
}
|