2017-11-08 10:36:43 +00:00
|
|
|
{ stdenv, fetchFromGitHub, ncurses, boost, asciidoc, docbook_xsl, libxslt, pkgconfig }:
|
2016-07-27 19:02:24 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-04-12 16:24:17 +01:00
|
|
|
name = "kakoune-unstable-${version}";
|
2018-03-22 12:12:27 +00:00
|
|
|
version = "2018-03-22";
|
2016-07-27 19:02:24 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "kakoune";
|
|
|
|
owner = "mawww";
|
2018-03-22 12:12:27 +00:00
|
|
|
rev = "f8e297acef1be0657b779fea5256f606a6c6a3a3";
|
|
|
|
sha256 = "14xmw3lkwzppm9bns55nmyb1lfihzhdyisf6xjqlszdj4mcf94jl";
|
2016-07-27 19:02:24 +01: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 ];
|
2016-07-27 19:02:24 +01:00
|
|
|
|
2017-04-12 16:24:17 +01:00
|
|
|
postPatch = ''
|
2016-07-27 19:02:24 +01:00
|
|
|
export PREFIX=$out
|
2017-04-12 16:24:17 +01:00
|
|
|
cd src
|
|
|
|
sed -ie 's#--no-xmllint#--no-xmllint --xsltproc-opts="--nonet"#g' Makefile
|
2016-07-27 19:02:24 +01: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 19:02:24 +01:00
|
|
|
};
|
|
|
|
}
|