summaryrefslogtreecommitdiff
path: root/pkgs/StaticXSLT.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/StaticXSLT.nix')
-rw-r--r--pkgs/StaticXSLT.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/StaticXSLT.nix b/pkgs/StaticXSLT.nix
deleted file mode 100644
index 3caee06..0000000
--- a/pkgs/StaticXSLT.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ stdenv, fetchFromGitHub }:
-
-stdenv.mkDerivation rec {
- name = "StaticXSLT";
-
- src = fetchFromGitHub {
- owner = "KnairdA";
- repo = "StaticXSLT";
- rev = "master";
- sha256 = "17gd181cw9yyc4h1fn7fikcgm8g7fdwm7d7fxwib4aynm18kwqad";
- };
-
- installPhase = ''
- mkdir $out
- cp -r * $out/
- '';
-
- meta = with stdenv.lib; {
- description = "StaticXSLT";
- homepage = https://github.com/KnairdA/StaticXSLT/;
- license = stdenv.lib.licenses.mit;
- };
-}