From 911c7322974d9dd66906937252de6f95e8923f16 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Mon, 24 Sep 2018 10:21:07 +0200 Subject: Unify derivation naming scheme --- pkgs/xslt/make-xslt/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pkgs/xslt/make-xslt/default.nix (limited to 'pkgs/xslt/make-xslt/default.nix') diff --git a/pkgs/xslt/make-xslt/default.nix b/pkgs/xslt/make-xslt/default.nix new file mode 100644 index 0000000..0fb00cc --- /dev/null +++ b/pkgs/xslt/make-xslt/default.nix @@ -0,0 +1,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}/ + '' -- cgit v1.2.3