diff options
Use shared Nix derivations of XSLT build stack
Diffstat (limited to 'pkgs/InputXSLT.nix')
-rw-r--r-- | pkgs/InputXSLT.nix | 20 |
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; - }; -} |