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

41 lines
995 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, ncurses, asciidoc, docbook_xsl, libxslt, pkgconfig }:
2016-07-27 18:02:24 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "kakoune-unwrapped";
version = "2020.08.04";
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 = "1cgkis8bywy5k8k6j4i3prikpmhh1p6zyklliyxbc89mj64kvx4s";
2016-07-27 18:02:24 +00:00
};
nativeBuildInputs = [ pkgconfig ];
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}"
'';
2019-07-03 14:40:46 +00:00
doInstallCheckPhase = true;
installCheckPhase = ''
$out/bin/kak -ui json -E "kill 0"
'';
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
};
}