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

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

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

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

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