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

36 lines
893 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 = "2019.01.20";
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 = "04ak1jm7b1i03sx10z3fxw08rn692y2fj482jn5kpzfzj91b2ila";
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}"
'';
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 ];
platforms = platforms.unix;
2016-07-27 18:02:24 +00:00
};
}