2022-12-17T13:59:10 kakoune-unwrapped 2021.11.08 -> 2022.10.31 https://github.com/mawww/kakoune/releases 2022-12-17T13:59:12 attrpath: kakoune-unwrapped 2022-12-17T13:59:12 Checking auto update branch... 2022-12-17T13:59:12 No auto update branch exists 2022-12-17T13:59:13 Old version 2021.11.08" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub }: with lib; stdenv.mkDerivation rec { pname = "kakoune-unwrapped"; version = "2022.10.31"; src = fetchFromGitHub { repo = "kakoune"; owner = "mawww"; rev = "v${version}"; sha256 = "sha256-vmzGaGl0KSjseSD/s6DXxvMUTmAle+Iv/ZP9llaFnXk="; }; makeFlags = [ "debug=no" "PREFIX=${placeholder "out"}" ]; preConfigure = '' export version="v${version}" ''; enableParallelBuilding = true; doInstallCheck = true; installCheckPhase = '' $out/bin/kak -ui json -e "kill 0" ''; 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 = { homepage = "http://kakoune.org/"; description = "A vim inspired text editor"; license = licenses.publicDomain; mainProgram = "kak"; maintainers = with maintainers; [ vrthra srapenne ]; platforms = platforms.unix; }; }