summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2016-12-30 12:03:52 -0500
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2016-12-30 14:27:49 -0500
commit9a5e34facad643a6231682db0ed3667a7b437166 (patch)
treef318aff007486ac58d2f5465c155d07f107083d7 /pkgs/applications/editors
parent456cf826e01506ecf88bc0740ff3433fa5cc10f6 (diff)
downloadnixlib-9a5e34facad643a6231682db0ed3667a7b437166.tar
nixlib-9a5e34facad643a6231682db0ed3667a7b437166.tar.gz
nixlib-9a5e34facad643a6231682db0ed3667a7b437166.tar.bz2
nixlib-9a5e34facad643a6231682db0ed3667a7b437166.tar.lz
nixlib-9a5e34facad643a6231682db0ed3667a7b437166.tar.xz
nixlib-9a5e34facad643a6231682db0ed3667a7b437166.tar.zst
nixlib-9a5e34facad643a6231682db0ed3667a7b437166.zip
kakoune: 2016-12-10 -> 2016-12-30, fix on Darwin
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/kakoune/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/editors/kakoune/default.nix b/pkgs/applications/editors/kakoune/default.nix
index 73ee7ed64cd5..14b13c394f31 100644
--- a/pkgs/applications/editors/kakoune/default.nix
+++ b/pkgs/applications/editors/kakoune/default.nix
@@ -4,17 +4,18 @@ with stdenv.lib;
 
 stdenv.mkDerivation rec {
   name = "kakoune-nightly-${version}";
-  version = "2016-12-10";
+  version = "2016-12-30";
   src = fetchFromGitHub {
     repo = "kakoune";
     owner = "mawww";
-    rev = "e44129577a010ebb4dc609b806104d3175659074";
-    sha256 = "1jkpbk6wa9x5nlv002y1whv6ddhqawxzbp3jcbzcb51cg8bz0b1l";
+    rev = "76c58aa022a896dc170c207ff821992ee354d934";
+    sha256 = "0hgpcp6444cyg4bm0a9ypywjwfh19qpqpfr5w0wcd2y3clnsvsdz";
   };
   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"
     export PREFIX=$out
     (cd src && make )
   '';
@@ -28,6 +29,6 @@ stdenv.mkDerivation rec {
     description = "A vim inspired text editor";
     license = licenses.publicDomain;
     maintainers = with maintainers; [ vrthra ];
-    platforms = platforms.linux;
+    platforms = platforms.unix;
   };
 }