Skip to content

Commit

Permalink
atril: init at 1.19.0 (#25765)
Browse files Browse the repository at this point in the history
  • Loading branch information
armijnhemel authored and pSub committed Jun 18, 2017
1 parent 78b34f9 commit 73744e7
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pkgs/desktops/mate/atril/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libxml2, libsecret, poppler, itstool, mate, wrapGAppsHook }:

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
mate.mate-desktop
];

configureFlags = [ "--disable-caja" ];

meta = {
description = "A simple multi-page document viewer for the MATE desktop";
homepage = "http://mate-desktop.org";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
};
}
1 change: 1 addition & 0 deletions pkgs/desktops/mate/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{ callPackage, pkgs }:
rec {
atril = callPackage ./atril { };
caja = callPackage ./caja { };
mate-common = callPackage ./mate-common { };
mate-desktop = callPackage ./mate-desktop { };
Expand Down

0 comments on commit 73744e7

Please sign in to comment.