kakoune: 2017-02-09-> 2017-04-12

fixes #24847
fixes #24738
This commit is contained in:
Michael Leandersson 2017-04-12 17:24:17 +02:00 committed by Jörg Thalheim
parent 73c8797d16
commit 15bb499df9
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA

View File

@ -3,25 +3,20 @@
with stdenv.lib;
stdenv.mkDerivation rec {
name = "kakoune-nightly-${version}";
version = "2017-02-09";
name = "kakoune-unstable-${version}";
version = "2017-04-12";
src = fetchFromGitHub {
repo = "kakoune";
owner = "mawww";
rev = "9ba1665e58ee84b6596d89e6ef75f7c32e7c6c14";
sha256 = "1l25mzq64a481qlsyh25rzp5rzajrkx4dq29677z85lnjqn30wbi";
rev = "7482d117cc85523e840dff595134dcb9cdc62207";
sha256 = "08j611y192n9vln9i94ldlvz3k0sg79dkmfc0b1vczrmaxhpgpfh";
};
buildInputs = [ ncurses boost asciidoc docbook_xsl libxslt ];
buildPhase = ''
sed -ie 's#--no-xmllint#--no-xmllint --xsltproc-opts="--nonet"#g' src/Makefile
substituteInPlace src/Makefile --replace "boost_regex-mt" "boost_regex"
postPatch = ''
export PREFIX=$out
(cd src && make )
'';
installPhase = ''
(cd src && make install)
cd src
sed -ie 's#--no-xmllint#--no-xmllint --xsltproc-opts="--nonet"#g' Makefile
'';
meta = {