From 8223f1abb07fd5c26c1361b42e9c7527fd718fa5 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sun, 27 May 2018 21:34:37 +0200 Subject: Add Nix derivation, dependencies --- InputXSLT.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 InputXSLT.nix (limited to 'InputXSLT.nix') diff --git a/InputXSLT.nix b/InputXSLT.nix new file mode 100644 index 0000000..6c1f473 --- /dev/null +++ b/InputXSLT.nix @@ -0,0 +1,18 @@ +{ 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; { + homepage = https://github.com/KnairdA/InputXSLT/; + }; +} -- cgit v1.2.3