2019-10-10 04:47:37 +02:00
|
|
|
{ stdenv, vala, fetchFromGitHub, pantheon, pkgconfig, meson, ninja, python3, gtk3
|
2019-12-15 06:45:38 +01:00
|
|
|
, desktop-file-utils, json-glib, libsoup, libgee, poppler, wrapGAppsHook, fetchpatch }:
|
2018-09-08 14:45:29 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "aesop";
|
2019-11-20 11:47:52 +01:00
|
|
|
version = "1.1.3";
|
2018-09-08 14:45:29 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lainsce";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-11-20 11:47:52 +01:00
|
|
|
sha256 = "1hnwhxaz0zx4fswrxjzyv5s77v5fimn87yid9sd1qgfv2g1ck0jc";
|
2018-09-08 14:45:29 +02:00
|
|
|
};
|
|
|
|
|
2019-12-15 06:45:38 +01:00
|
|
|
patches = [
|
|
|
|
# Fix build
|
|
|
|
# https://github.com/lainsce/aesop/pull/33
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/lainsce/aesop/commit/850ec86bbfef5168e537a5af7e0d73d96db56330.patch";
|
|
|
|
sha256 = "14b251wp11rypqw4fafwjbsqy92mxzr8mmaxlv7n4whvwxrzqirh";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-09-08 14:45:29 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
desktop-file-utils
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
|
|
|
python3
|
2019-10-10 04:47:37 +02:00
|
|
|
vala
|
2018-09-08 14:45:29 +02:00
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-08-20 22:31:18 +02:00
|
|
|
pantheon.elementary-icon-theme
|
2019-03-20 03:23:29 +01:00
|
|
|
libgee
|
2018-08-20 22:31:18 +02:00
|
|
|
pantheon.granite
|
2018-09-08 14:45:29 +02: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 23:06:13 +01:00
|
|
|
homepage = https://github.com/lainsce/aesop;
|
|
|
|
license = licenses.gpl2Plus;
|
2019-08-04 09:25:10 +02:00
|
|
|
maintainers = pantheon.maintainers;
|
2018-10-31 23:06:13 +01:00
|
|
|
platforms = platforms.linux;
|
2018-09-08 14:45:29 +02:00
|
|
|
};
|
|
|
|
}
|