nixpkgs/pkgs/desktops/mate/atril/default.nix

40 lines
950 B
Nix
Raw Normal View History

2018-01-08 18:00:54 +00:00
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libxml2, libsecret, poppler, itstool, caja, mate-desktop, hicolor_icon_theme, wrapGAppsHook }:
2017-06-18 10:39:59 +01:00
stdenv.mkDerivation rec {
name = "atril-${version}";
version = "${major-ver}.${minor-ver}";
major-ver = "1.19";
minor-ver = "0";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
sha256 = "0v829yvr738y5s2knyvimcgqv351qzb0rpw5il19qc27rbzyri1r";
};
nativeBuildInputs = [
pkgconfig
intltool
wrapGAppsHook
];
buildInputs = [
gtk3
itstool
libsecret
libxml2
poppler
2018-01-08 18:00:54 +00:00
caja
mate-desktop
2017-09-01 21:27:24 +01:00
hicolor_icon_theme
2017-06-18 10:39:59 +01:00
];
2018-01-08 18:00:54 +00:00
makeFlags = [ "cajaextensiondir=$$out/lib/caja/extensions-2.0" ];
2017-06-18 10:39:59 +01:00
meta = {
description = "A simple multi-page document viewer for the MATE desktop";
homepage = http://mate-desktop.org;
2017-06-18 10:39:59 +01:00
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
};
}