nixpkgs/pkgs/applications/editors/retext/default.nix

46 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, python3, fetchFromGitHub, wrapQtAppsHook, buildEnv, aspellDicts
2019-03-16 19:14:52 +00:00
# Use `lib.collect lib.isDerivation aspellDicts;` to make all dictionaries
# available.
, enchantAspellDicts ? with aspellDicts; [ en en-computers en-science ]
}:
let
version = "7.0.4";
pythonEnv = python3.withPackages (ps: with ps; [
2019-03-16 19:14:52 +00:00
pyqt5 docutils pyenchant Markups markdown pygments chardet
]);
in python3.pkgs.buildPythonApplication {
2019-03-16 19:14:52 +00:00
inherit version;
pname = "retext";
src = fetchFromGitHub {
owner = "retext-project";
repo = "retext";
2019-09-08 23:38:31 +00:00
rev = version;
2019-03-16 19:14:52 +00:00
sha256 = "1zcapywspc9v5zf5cxqkcy019np9n41gmryqixj66zsvd544c6si";
};
doCheck = false;
2019-11-17 07:50:07 +00:00
nativeBuildInputs = [ wrapQtAppsHook ];
propagatedBuildInputs = [ pythonEnv ];
2019-03-16 19:14:52 +00:00
postInstall = ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
makeWrapperArgs+=(
"--set" "ASPELL_CONF" "dict-dir ${buildEnv {
2019-03-16 19:14:52 +00:00
name = "aspell-all-dicts";
paths = map (path: "${path}/lib/aspell") enchantAspellDicts;
}}"
)
2019-03-16 19:14:52 +00:00
'';
meta = with lib; {
homepage = "https://github.com/retext-project/retext/";
2019-03-16 19:14:52 +00:00
description = "Simple but powerful editor for Markdown and reStructuredText";
license = licenses.gpl3;
maintainers = with maintainers; [ klntsky ];
platforms = platforms.unix;
};
}