1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 19:15:39 +00:00
nixpkgs/pkgs/applications/editors/kakoune/default.nix

30 lines
806 B
Nix
Raw Normal View History

2016-07-27 19:02:24 +01:00
{ stdenv, fetchFromGitHub, ncurses, boost, asciidoc, docbook_xsl, libxslt }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "kakoune-unstable-${version}";
version = "2017-04-12";
2016-07-27 19:02:24 +01:00
src = fetchFromGitHub {
repo = "kakoune";
owner = "mawww";
rev = "7482d117cc85523e840dff595134dcb9cdc62207";
sha256 = "08j611y192n9vln9i94ldlvz3k0sg79dkmfc0b1vczrmaxhpgpfh";
2016-07-27 19:02:24 +01:00
};
buildInputs = [ ncurses boost asciidoc docbook_xsl libxslt ];
postPatch = ''
2016-07-27 19:02:24 +01:00
export PREFIX=$out
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 ];
platforms = platforms.unix;
2016-07-27 19:02:24 +01:00
};
}