From 43bc484b4e3dc47512872e62779d7fe98fac93a1 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sun, 23 Sep 2018 20:14:29 +0200 Subject: Initial import of my custom Nix derivations --- pkgs/xslt/InputXSLT/default.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pkgs/xslt/InputXSLT/default.nix (limited to 'pkgs/xslt/InputXSLT/default.nix') diff --git a/pkgs/xslt/InputXSLT/default.nix b/pkgs/xslt/InputXSLT/default.nix new file mode 100644 index 0000000..a85bc37 --- /dev/null +++ b/pkgs/xslt/InputXSLT/default.nix @@ -0,0 +1,20 @@ +{ 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; + }; +} -- cgit v1.2.3