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

31 lines
848 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, ncurses, boost, asciidoc, docbook_xsl, libxslt, pkgconfig }:
2016-07-27 18:02:24 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
name = "kakoune-unstable-${version}";
2018-02-17 19:43:33 +00:00
version = "2018-02-15";
2016-07-27 18:02:24 +00:00
src = fetchFromGitHub {
repo = "kakoune";
owner = "mawww";
2018-02-17 19:43:33 +00:00
rev = "f5e39972eb525166dc5b1d963067f79990991a75";
sha256 = "160a302xg6nfzx49dkis6ij20kyzr63kxvcv8ld3l07l8k69g80r";
2016-07-27 18:02:24 +00:00
};
nativeBuildInputs = [ pkgconfig ];
2018-02-17 19:43:33 +00:00
buildInputs = [ ncurses asciidoc docbook_xsl libxslt ];
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
'';
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
};
}