2017-11-08 11:36:43 +01:00
|
|
|
{ stdenv, fetchFromGitHub, ncurses, boost, asciidoc, docbook_xsl, libxslt, pkgconfig }:
|
2016-07-27 20:02:24 +02:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-04-12 17:24:17 +02:00
|
|
|
name = "kakoune-unstable-${version}";
|
2018-05-21 21:41:00 +02:00
|
|
|
version = "2018-05-21";
|
2016-07-27 20:02:24 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "kakoune";
|
|
|
|
owner = "mawww";
|
2018-05-21 21:41:00 +02:00
|
|
|
rev = "878d2a4bdb674a5e7703a66e530520f48efba641";
|
|
|
|
sha256 = "0pwy6ilsb62s1792gjyvhvq8shj60l8lx26b58zvpfb54an4s6rk";
|
2016-07-27 20:02:24 +02:00
|
|
|
};
|
2017-11-08 11:36:43 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-17 20:43:33 +01:00
|
|
|
buildInputs = [ ncurses asciidoc docbook_xsl libxslt ];
|
2018-05-21 21:41:00 +02:00
|
|
|
makeFlags = [ "debug=no" ];
|
2016-07-27 20:02:24 +02:00
|
|
|
|
2017-04-12 17:24:17 +02:00
|
|
|
postPatch = ''
|
2016-07-27 20:02:24 +02:00
|
|
|
export PREFIX=$out
|
2017-04-12 17:24:17 +02:00
|
|
|
cd src
|
|
|
|
sed -ie 's#--no-xmllint#--no-xmllint --xsltproc-opts="--nonet"#g' Makefile
|
2016-07-27 20:02:24 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://kakoune.org/;
|
|
|
|
description = "A vim inspired text editor";
|
|
|
|
license = licenses.publicDomain;
|
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2016-12-30 18:03:52 +01:00
|
|
|
platforms = platforms.unix;
|
2016-07-27 20:02:24 +02:00
|
|
|
};
|
|
|
|
}
|