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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2016-07-27 18:02:24 +00:00
stdenv.mkDerivation rec {
pname = "kakoune-unwrapped";
version = "2023.08.05";
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-RR3kw39vEjsg+6cIY6cK2i3ecGHlr1yzuBKaDtGlOGo=";
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
'';
meta = with lib; {
homepage = "http://kakoune.org/";
2016-07-27 18:02:24 +00:00
description = "A vim inspired text editor";
license = licenses.publicDomain;
2021-12-17 19:30:01 +00:00
mainProgram = "kak";
2022-10-04 20:37:42 +00:00
maintainers = with maintainers; [ vrthra srapenne ];
platforms = platforms.unix;
2016-07-27 18:02:24 +00:00
};
}