Merge pull request #103969 from eraserhd/openscad.kak
kakounePlugins.openscad-kak: init at unstable-2020-11-16
This commit is contained in:
commit
77f29c6e22
@ -12,4 +12,5 @@
|
|||||||
kak-powerline = pkgs.callPackage ./kak-powerline.nix { };
|
kak-powerline = pkgs.callPackage ./kak-powerline.nix { };
|
||||||
kak-prelude = pkgs.callPackage ./kak-prelude.nix { };
|
kak-prelude = pkgs.callPackage ./kak-prelude.nix { };
|
||||||
kak-vertical-selection = pkgs.callPackage ./kak-vertical-selection.nix { };
|
kak-vertical-selection = pkgs.callPackage ./kak-vertical-selection.nix { };
|
||||||
|
openscad-kak = pkgs.callPackage ./openscad.kak.nix { };
|
||||||
}
|
}
|
||||||
|
25
pkgs/applications/editors/kakoune/plugins/openscad.kak.nix
Normal file
25
pkgs/applications/editors/kakoune/plugins/openscad.kak.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "openscad.kak";
|
||||||
|
version = "unstable-2019-11-08";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "mayjs";
|
||||||
|
repo = "openscad.kak";
|
||||||
|
rev = "d9143d5e7834e3356b49720664d5647cab9db7cc";
|
||||||
|
sha256 = "0j4dqhrn56z77hdalfdxagwz8h6nwr8s9i4w0bs2644k72lsm2ix";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -Dm644 rc/openscad.kak -t $out/share/kak/autoload/plugins/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Syntax highlighting for OpenSCAD files";
|
||||||
|
homepage = "https://github.com/mayjs/openscad.kak";
|
||||||
|
license = licenses.unlicense;
|
||||||
|
maintainers = with maintainers; [ eraserhd ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user