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

48 lines
1,009 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.1";
2018-09-08 12:45:29 +00:00
src = fetchFromGitHub {
owner = "lainsce";
repo = pname;
rev = version;
sha256 = "191azshc2z9pzc61fhmzv5cxnihh5wh3nj803kvi3rnk6nl9mhzh";
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;
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
};
}