1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 08:31:59 +00:00
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 19:02:24 +01:00
with stdenv.lib;
stdenv.mkDerivation rec {
name = "kakoune-unstable-${version}";
version = "2018-03-22";
2016-07-27 19:02:24 +01:00
src = fetchFromGitHub {
repo = "kakoune";
owner = "mawww";
rev = "f8e297acef1be0657b779fea5256f606a6c6a3a3";
sha256 = "14xmw3lkwzppm9bns55nmyb1lfihzhdyisf6xjqlszdj4mcf94jl";
2016-07-27 19:02:24 +01: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
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
};
}