mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
59 lines
2 KiB
Nix
59 lines
2 KiB
Nix
{ lib, stdenv, fetchFromGitLab, meson, ninja
|
|
, wrapGAppsHook, pkg-config, desktop-file-utils
|
|
, appstream-glib, pythonPackages, glib, gobject-introspection
|
|
, gtk3, webkitgtk, glib-networking, gnome, gspell, texlive
|
|
, shared-mime-info, libhandy, fira, sassc
|
|
}:
|
|
|
|
let
|
|
pythonEnv = pythonPackages.python.withPackages(p: with p; [
|
|
regex setuptools python-Levenshtein pyenchant
|
|
pygobject3 pycairo pypandoc chardet
|
|
]);
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "apostrophe";
|
|
version = "2.5";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "World";
|
|
repo = pname;
|
|
domain = "gitlab.gnome.org";
|
|
rev = "v${version}";
|
|
sha256 = "06yfiflmj3ip7ppcz41nb3xpgb5ggw5h74w0v87yaqqkq7qh31lp";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config desktop-file-utils
|
|
appstream-glib wrapGAppsHook sassc ];
|
|
|
|
buildInputs = [ glib pythonEnv gobject-introspection gtk3
|
|
gnome.adwaita-icon-theme webkitgtk gspell texlive
|
|
glib-networking libhandy ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace data/media/css/web/base.css \
|
|
--replace 'url("/app/share/fonts/FiraSans-Regular.ttf") format("ttf")' \
|
|
'url("${fira}/share/fonts/opentype/FiraSans-Regular.otf") format("otf")' \
|
|
--replace 'url("/app/share/fonts/FiraMono-Regular.ttf") format("ttf")' \
|
|
'url("${fira}/share/fonts/opentype/FiraMono-Regular.otf") format("otf")'
|
|
|
|
patchShebangs --build build-aux/meson_post_install.py
|
|
'';
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--prefix PYTHONPATH : "$out/lib/python${pythonEnv.pythonVersion}/site-packages/"
|
|
--prefix PATH : "${texlive}/bin"
|
|
--prefix XDG_DATA_DIRS : "${shared-mime-info}/share"
|
|
)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.gnome.org/World/apostrophe";
|
|
description = "A distraction free Markdown editor for GNU/Linux";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
};
|
|
}
|