nixpkgs/pkgs/applications/editors/kakoune/plugins/kak-prelude.nix

26 lines
697 B
Nix
Raw Normal View History

2020-07-26 19:03:12 +01:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation {
name = "kak-prelude";
version = "2020-03-15";
src = fetchFromGitHub {
owner = "alexherbo2";
repo = "prelude.kak";
rev = "05b2642b1e014bd46423f9d738cc38a624947b63";
sha256 = "180p8hq8z7mznzd9w9ma5as3ijs7zbzcj96prcpswqg263a0b329";
};
installPhase = ''
mkdir -p $out/share/kak/autoload/plugins
2020-11-15 21:42:11 +00:00
cp -r rc $out/share/kak/autoload/plugins/prelude
2020-07-26 19:03:12 +01:00
'';
meta = with stdenv.lib;
{ description = "Prelude of shell blocks for Kakoune.";
homepage = "https://github.com/alexherbo2/prelude.kak";
license = licenses.unlicense;
maintainers = with maintainers; [ buffet ];
platform = platforms.all;
};
}