summaryrefslogtreecommitdiff
path: root/pkgs/xslt/static-xslt/default.nix
blob: 4a4601d5593dd21010a84214de54d1ef8848f6aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ pkgs, ... }:

pkgs.stdenv.mkDerivation rec {
  name = "static-xslt";

  src = pkgs.fetchFromGitHub {
    owner = "KnairdA";
    repo  = "StaticXSLT";
    rev    = "0b84f519cb418d32c0fd62f9c6c852ee31f7c926";
    sha256 = "058kld9ysagzama0l6hnn6v6mm6jf29fbf78q0l92fxl0mlabd7n";
  };

  installPhase = ''
    mkdir $out
    cp -r * $out/
  '';

  meta = with pkgs.stdenv.lib; {
    description = "StaticXSLT";
    homepage    = https://github.com/KnairdA/StaticXSLT/;
    license     = pkgs.stdenv.lib.licenses.mit;
  };
}