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

48 lines
995 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, ninja, python3, gtk3
, desktop-file-utils, json-glib, libsoup, libgee, poppler, wrapGAppsHook }:
2018-09-08 12:45:29 +00:00
stdenv.mkDerivation rec {
pname = "aesop";
version = "1.1.2";
2018-09-08 12:45:29 +00:00
src = fetchFromGitHub {
owner = "lainsce";
repo = pname;
rev = version;
sha256 = "1vadm8295jb7jaah2qykf3h9zvl5c013sanmxqi4snmmq4pa32ax";
2018-09-08 12:45:29 +00:00
};
nativeBuildInputs = [
desktop-file-utils
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
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;
maintainers = pantheon.maintainers;
2018-10-31 22:06:13 +00:00
platforms = platforms.linux;
2018-09-08 12:45:29 +00:00
};
}