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

44 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2016-07-27 18:02:24 +00:00
2021-01-15 13:21:58 +00:00
with lib;
2016-07-27 18:02:24 +00:00
stdenv.mkDerivation rec {
pname = "kakoune-unwrapped";
version = "2021.11.08";
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 = "sha256-lMGMt0H1G8EN/7zSVSvU1yU4BYPnSF1vWmozLdrRTQk=";
2016-07-27 18:02:24 +00:00
};
makeFlags = [ "debug=no" "PREFIX=${placeholder "out"}" ];
2016-07-27 18:02:24 +00:00
preConfigure = ''
export version="v${version}"
'';
enableParallelBuilding = true;
doInstallCheck = true;
2019-07-03 14:40:46 +00:00
installCheckPhase = ''
$out/bin/kak -ui json -e "kill 0"
2019-07-03 14:40:46 +00:00
'';
postInstall = ''
# make share/kak/autoload a directory, so we can use symlinkJoin with plugins
cd "$out/share/kak"
autoload_target=$(readlink autoload)
rm autoload
mkdir autoload
ln -s --relative "$autoload_target" autoload
'';
2016-07-27 18:02:24 +00:00
meta = {
homepage = "http://kakoune.org/";
2016-07-27 18:02:24 +00:00
description = "A vim inspired text editor";
license = licenses.publicDomain;
maintainers = with maintainers; [ vrthra ];
platforms = platforms.unix;
2016-07-27 18:02:24 +00:00
};
}