nixpkgs/pkgs/applications/office/aesop/default.nix

51 lines
1.1 KiB
Nix
Raw Normal View History

2018-08-20 20:31:18 +00:00
{ stdenv, fetchFromGitHub, fetchpatch, pantheon, pkgconfig, meson, ninja, python3, gtk3
, gnome3, desktop-file-utils, json-glib, libsoup, poppler, gobject-introspection, wrapGAppsHook }:
2018-09-08 12:45:29 +00:00
stdenv.mkDerivation rec {
pname = "aesop";
2018-10-31 22:06:13 +00:00
version = "1.0.7";
2018-09-08 12:45:29 +00:00
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "lainsce";
repo = pname;
rev = version;
sha256 = "17hjg4qcy8q9xl170yapbhn9vdsn3jf537jsggq51pp0fnhvsnqs";
};
nativeBuildInputs = [
desktop-file-utils
gobject-introspection
2018-09-08 12:45:29 +00:00
meson
ninja
pkgconfig
python3
2018-08-20 20:31:18 +00:00
pantheon.vala
2018-09-08 12:45:29 +00:00
wrapGAppsHook
];
buildInputs = [
2018-08-20 20:31:18 +00:00
pantheon.elementary-icon-theme
2018-09-08 12:45:29 +00:00
gnome3.libgee
2018-08-20 20:31:18 +00:00
pantheon.granite
2018-09-08 12:45:29 +00:00
gtk3
json-glib
libsoup
poppler
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
meta = with stdenv.lib; {
description = "The simplest PDF viewer around";
2018-10-31 22:06:13 +00:00
homepage = https://github.com/lainsce/aesop;
license = licenses.gpl2Plus;
2018-09-08 12:45:29 +00:00
maintainers = with maintainers; [ worldofpeace ];
2018-10-31 22:06:13 +00:00
platforms = platforms.linux;
2018-09-08 12:45:29 +00:00
};
}