summaryrefslogtreecommitdiff
path: root/pkgs/xslt/input-xslt/default.nix
blob: 280ad9be2a6eb16d35493d671fda99d9df89470d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchFromGitHub, cmake, boost, xalanc, xercesc, discount }:

stdenv.mkDerivation rec {
  name = "input-xslt";

  src = fetchFromGitHub {
    owner = "KnairdA";
    repo = "InputXSLT";
    rev = "master";
    sha256 = "1pjhq1jjfdhd0k3fckvir465l34wkbvqp47r7r6qdd93fg6kw3x8";
  };

  buildInputs = [ cmake boost xalanc xercesc discount ];

  meta = with stdenv.lib; {
    description = "InputXSLT";
    homepage    = https://github.com/KnairdA/InputXSLT/;
    license     = stdenv.lib.licenses.asl20;
  };
}