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

54 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, vala, fetchFromGitHub, pantheon, pkgconfig, meson, ninja, python3, gtk3
, desktop-file-utils, json-glib, libsoup, libgee, poppler, wrapGAppsHook, fetchpatch }:
2018-09-08 12:45:29 +00:00
stdenv.mkDerivation rec {
pname = "aesop";
2020-05-02 01:37:48 +00:00
version = "1.2.5";
2018-09-08 12:45:29 +00:00
src = fetchFromGitHub {
owner = "lainsce";
repo = pname;
rev = version;
2020-05-02 01:37:48 +00:00
sha256 = "1zxyyxl959rqhyz871dyyccqga2ydybkfcpyjq4vmvdn2g9mvmb0";
2018-09-08 12:45:29 +00:00
};
nativeBuildInputs = [
desktop-file-utils
meson
ninja
pkgconfig
python3
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
'';
2019-12-22 23:19:30 +00:00
passthru = {
updateScript = pantheon.updateScript {
attrPath = pname;
};
};
2018-09-08 12:45:29 +00:00
meta = with stdenv.lib; {
description = "The simplest PDF viewer around";
2020-03-01 08:58:30 +00:00
homepage = "https://github.com/lainsce/aesop";
2018-10-31 22:06:13 +00:00
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
};
}