2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, fetchFromGitHub, ncurses, asciidoc, docbook_xsl, libxslt, pkgconfig }:
|
2016-07-27 18:02:24 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-04-12 15:24:17 +00:00
|
|
|
name = "kakoune-unstable-${version}";
|
2018-11-09 23:26:07 +00:00
|
|
|
version = "2018.10.27";
|
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}";
|
2018-11-09 23:26:07 +00:00
|
|
|
sha256 = "1w7jmq57h8gxxbzg0n3lgd6cci77xb9mziy6lr8330nzqc85zp9p";
|
2016-07-27 18:02:24 +00:00
|
|
|
};
|
2017-11-08 10:36:43 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-17 19:43:33 +00:00
|
|
|
buildInputs = [ ncurses asciidoc docbook_xsl libxslt ];
|
2018-05-21 19:41:00 +00:00
|
|
|
makeFlags = [ "debug=no" ];
|
2016-07-27 18:02:24 +00:00
|
|
|
|
2017-04-12 15:24:17 +00:00
|
|
|
postPatch = ''
|
2016-07-27 18:02:24 +00:00
|
|
|
export PREFIX=$out
|
2017-04-12 15:24:17 +00:00
|
|
|
cd src
|
|
|
|
sed -ie 's#--no-xmllint#--no-xmllint --xsltproc-opts="--nonet"#g' Makefile
|
2016-07-27 18:02:24 +00:00
|
|
|
'';
|
|
|
|
|
2018-11-20 22:57:39 +00:00
|
|
|
preConfigure = ''
|
|
|
|
export version="v${version}"
|
|
|
|
'';
|
|
|
|
|
2016-07-27 18:02:24 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://kakoune.org/;
|
|
|
|
description = "A vim inspired text editor";
|
|
|
|
license = licenses.publicDomain;
|
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2016-12-30 17:03:52 +00:00
|
|
|
platforms = platforms.unix;
|
2016-07-27 18:02:24 +00:00
|
|
|
};
|
|
|
|
}
|