summaryrefslogtreecommitdiff
path: root/pkgs/xslt/make-xslt/default.nix
blob: 0fb00cc1bd5cd63769c4d8e1f1b89e2a19c75bd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, ... }:

let
  InputXSLT  = pkgs.callPackage ../input-xslt  { };
  BuildXSLT  = pkgs.callPackage ../build-xslt  { };
  StaticXSLT = pkgs.callPackage ../static-xslt { };
in pkgs.writeScriptBin
  "make-xslt"
  ''
    #!/bin/sh
    ${InputXSLT}/bin/ixslt --input make.xml --transformation ${BuildXSLT}/build.xsl --include ${StaticXSLT}/
  ''