aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/editors/kakoune/plugins/openscad.kak.nix
blob: 21c8b7a60ccaa949b9d1ebec110297a9cec40a35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
  };
}