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

52 lines
1.3 KiB
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchFromGitHub, ncurses, asciidoc, docbook_xsl, libxslt, pkg-config }:
2016-07-27 18:02:24 +00:00
2021-01-15 13:21:58 +00:00
with lib;
2016-07-27 18:02:24 +00:00
stdenv.mkDerivation rec {
pname = "kakoune-unwrapped";
version = "2020.09.01";
2016-07-27 18:02:24 +00:00
src = fetchFromGitHub {
repo = "kakoune";
owner = "mawww";
2018-09-05 21:12:12 +00:00
rev = "v${version}";
sha256 = "091qzk0qs7hql0q51hix99srgma35mhdnjfd5ncfba1bmc1h8x5i";
2016-07-27 18:02:24 +00:00
};
nativeBuildInputs = [ pkg-config ];
2018-02-17 19:43:33 +00:00
buildInputs = [ ncurses asciidoc docbook_xsl libxslt ];
makeFlags = [ "debug=no" ];
2016-07-27 18:02:24 +00:00
postPatch = ''
2016-07-27 18:02:24 +00:00
export PREFIX=$out
cd src
sed -ie 's#--no-xmllint#--no-xmllint --xsltproc-opts="--nonet"#g' Makefile
2016-07-27 18:02:24 +00:00
'';
preConfigure = ''
export version="v${version}"
'';
enableParallelBuilding = true;
doInstallCheck = true;
2019-07-03 14:40:46 +00:00
installCheckPhase = ''
$out/bin/kak -ui json -e "kill 0"
2019-07-03 14:40:46 +00:00
'';
postInstall = ''
# make share/kak/autoload a directory, so we can use symlinkJoin with plugins
cd "$out/share/kak"
autoload_target=$(readlink autoload)
rm autoload
mkdir autoload
ln -s --relative "$autoload_target" autoload
'';
2016-07-27 18:02:24 +00:00
meta = {
homepage = "http://kakoune.org/";
2016-07-27 18:02:24 +00:00
description = "A vim inspired text editor";
license = licenses.publicDomain;
maintainers = with maintainers; [ vrthra ];
platforms = platforms.unix;
2016-07-27 18:02:24 +00:00
};
}