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

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