aboutsummaryrefslogtreecommitdiff
path: root/pkgs/InputXSLT.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/InputXSLT.nix')
-rw-r--r--pkgs/InputXSLT.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/pkgs/InputXSLT.nix b/pkgs/InputXSLT.nix
deleted file mode 100644
index a85bc37..0000000
--- a/pkgs/InputXSLT.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ stdenv, fetchFromGitHub, cmake, boost, xalanc, xercesc, discount }:
-
-stdenv.mkDerivation rec {
- name = "InputXSLT";
-
- src = fetchFromGitHub {
- owner = "KnairdA";
- repo = "InputXSLT";
- rev = "master";
- sha256 = "1j9fld3sh1jyscnsx6ab9jn5x6q67rjh9p3bgsh5na1qrs40dql0";
- };
-
- buildInputs = [ cmake boost xalanc xercesc discount ];
-
- meta = with stdenv.lib; {
- description = "InputXSLT";
- homepage = https://github.com/KnairdA/InputXSLT/;
- license = stdenv.lib.licenses.asl20;
- };
-}