2020-10-30 01:22:29 +01:00
|
|
|
{ pkgs, lib, gawk, gnused, gixy }:
|
2018-10-27 19:05:26 +02:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
rec {
|
|
|
|
# Base implementation for non-compiled executables.
|
|
|
|
# Takes an interpreter, for example `${pkgs.bash}/bin/bash`
|
|
|
|
#
|
|
|
|
# Examples:
|
|
|
|
# writeBash = makeScriptWriter { interpreter = "${pkgs.bash}/bin/bash"; }
|
|
|
|
# makeScriptWriter { interpreter = "${pkgs.dash}/bin/dash"; } "hello" "echo hello world"
|
2018-12-02 00:56:16 +01:00
|
|
|
makeScriptWriter = { interpreter, check ? "" }: nameOrPath: content:
|
|
|
|
assert lib.or (types.path.check nameOrPath) (builtins.match "([0-9A-Za-z._])[0-9A-Za-z._-]*" nameOrPath != null);
|
2019-08-08 22:48:27 +02:00
|
|
|
assert lib.or (types.path.check content) (types.str.check content);
|
2018-12-02 00:56:16 +01:00
|
|
|
let
|
|
|
|
name = last (builtins.split "/" nameOrPath);
|
|
|
|
in
|
2018-10-27 19:05:26 +02:00
|
|
|
|
2021-06-28 22:40:40 +02:00
|
|
|
pkgs.runCommandLocal name (if (types.str.check content) then {
|
2021-06-25 14:39:59 +02:00
|
|
|
inherit content interpreter;
|
|
|
|
passAsFile = [ "content" ];
|
2021-06-28 22:40:40 +02:00
|
|
|
} else {
|
|
|
|
inherit interpreter;
|
|
|
|
contentPath = content;
|
2018-12-02 00:56:16 +01:00
|
|
|
}) ''
|
2020-07-25 11:47:20 +02:00
|
|
|
# On darwin a script cannot be used as an interpreter in a shebang but
|
|
|
|
# there doesn't seem to be a limit to the size of shebang and multiple
|
|
|
|
# arguments to the interpreter are allowed.
|
|
|
|
if [[ -n "${toString pkgs.stdenvNoCC.isDarwin}" ]] && isScript $interpreter
|
|
|
|
then
|
|
|
|
wrapperInterpreterLine=$(head -1 "$interpreter" | tail -c+3)
|
|
|
|
# Get first word from the line (note: xargs echo remove leading spaces)
|
|
|
|
wrapperInterpreter=$(echo "$wrapperInterpreterLine" | xargs echo | cut -d " " -f1)
|
|
|
|
|
|
|
|
if isScript $wrapperInterpreter
|
|
|
|
then
|
|
|
|
echo "error: passed interpreter ($interpreter) is a script which has another script ($wrapperInterpreter) as an interpreter, which is not supported."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# This should work as long as wrapperInterpreter is a shell, which is
|
|
|
|
# the case for programs wrapped with makeWrapper, like
|
|
|
|
# python3.withPackages etc.
|
|
|
|
interpreterLine="$wrapperInterpreterLine $interpreter"
|
|
|
|
else
|
|
|
|
interpreterLine=$interpreter
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "#! $interpreterLine" > $out
|
2018-12-02 00:56:16 +01:00
|
|
|
cat "$contentPath" >> $out
|
2019-05-26 12:25:59 +02:00
|
|
|
${optionalString (check != "") ''
|
|
|
|
${check} $out
|
|
|
|
''}
|
2018-12-02 00:56:16 +01:00
|
|
|
chmod +x $out
|
|
|
|
${optionalString (types.path.check nameOrPath) ''
|
|
|
|
mv $out tmp
|
|
|
|
mkdir -p $out/$(dirname "${nameOrPath}")
|
|
|
|
mv tmp $out/${nameOrPath}
|
|
|
|
''}
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Base implementation for compiled executables.
|
|
|
|
# Takes a compile script, which in turn takes the name as an argument.
|
|
|
|
#
|
|
|
|
# Examples:
|
|
|
|
# writeSimpleC = makeBinWriter { compileScript = name: "gcc -o $out $contentPath"; }
|
2021-01-11 22:13:51 +01:00
|
|
|
makeBinWriter = { compileScript, strip ? true }: nameOrPath: content:
|
2018-12-02 00:56:16 +01:00
|
|
|
assert lib.or (types.path.check nameOrPath) (builtins.match "([0-9A-Za-z._])[0-9A-Za-z._-]*" nameOrPath != null);
|
2019-08-08 22:48:27 +02:00
|
|
|
assert lib.or (types.path.check content) (types.str.check content);
|
2018-12-02 00:56:16 +01:00
|
|
|
let
|
|
|
|
name = last (builtins.split "/" nameOrPath);
|
|
|
|
in
|
2019-08-08 22:48:27 +02:00
|
|
|
pkgs.runCommand name (if (types.str.check content) then {
|
2018-12-02 00:56:16 +01:00
|
|
|
inherit content;
|
|
|
|
passAsFile = [ "content" ];
|
|
|
|
} else {
|
|
|
|
contentPath = content;
|
|
|
|
}) ''
|
|
|
|
${compileScript}
|
2021-01-11 22:14:33 +01:00
|
|
|
${lib.optionalString strip
|
|
|
|
"${pkgs.binutils-unwrapped}/bin/strip --strip-unneeded $out"}
|
2018-12-02 00:56:16 +01:00
|
|
|
${optionalString (types.path.check nameOrPath) ''
|
|
|
|
mv $out tmp
|
|
|
|
mkdir -p $out/$(dirname "${nameOrPath}")
|
|
|
|
mv tmp $out/${nameOrPath}
|
|
|
|
''}
|
|
|
|
'';
|
2018-10-27 19:05:26 +02:00
|
|
|
|
|
|
|
# Like writeScript but the first line is a shebang to bash
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# writeBash "example" ''
|
|
|
|
# echo hello world
|
|
|
|
# ''
|
|
|
|
writeBash = makeScriptWriter {
|
|
|
|
interpreter = "${pkgs.bash}/bin/bash";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Like writeScriptBIn but the first line is a shebang to bash
|
|
|
|
writeBashBin = name:
|
|
|
|
writeBash "/bin/${name}";
|
|
|
|
|
|
|
|
# Like writeScript but the first line is a shebang to dash
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# writeDash "example" ''
|
|
|
|
# echo hello world
|
|
|
|
# ''
|
|
|
|
writeDash = makeScriptWriter {
|
|
|
|
interpreter = "${pkgs.dash}/bin/dash";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Like writeScriptBin but the first line is a shebang to dash
|
|
|
|
writeDashBin = name:
|
|
|
|
writeDash "/bin/${name}";
|
|
|
|
|
|
|
|
# writeHaskell takes a name, an attrset with libraries and haskell version (both optional)
|
|
|
|
# and some haskell source code and returns an executable.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# writeHaskell "missiles" { libraries = [ pkgs.haskellPackages.acme-missiles ]; } ''
|
2018-12-02 00:56:16 +01:00
|
|
|
# import Acme.Missiles
|
2018-10-27 19:05:26 +02:00
|
|
|
#
|
|
|
|
# main = launchMissiles
|
|
|
|
# '';
|
|
|
|
writeHaskell = name: {
|
|
|
|
libraries ? [],
|
2020-09-07 19:36:58 +02:00
|
|
|
ghc ? pkgs.ghc,
|
2021-01-11 22:14:33 +01:00
|
|
|
ghcArgs ? [],
|
|
|
|
strip ? true
|
2018-12-02 00:56:16 +01:00
|
|
|
}:
|
|
|
|
makeBinWriter {
|
|
|
|
compileScript = ''
|
|
|
|
cp $contentPath tmp.hs
|
2020-09-07 19:36:58 +02:00
|
|
|
${ghc.withPackages (_: libraries )}/bin/ghc ${lib.escapeShellArgs ghcArgs} tmp.hs
|
2018-12-02 00:56:16 +01:00
|
|
|
mv tmp $out
|
|
|
|
'';
|
2021-01-11 22:14:33 +01:00
|
|
|
inherit strip;
|
2018-12-02 00:56:16 +01:00
|
|
|
} name;
|
2018-10-27 19:05:26 +02:00
|
|
|
|
|
|
|
# writeHaskellBin takes the same arguments as writeHaskell but outputs a directory (like writeScriptBin)
|
2018-12-02 00:56:16 +01:00
|
|
|
writeHaskellBin = name:
|
|
|
|
writeHaskell "/bin/${name}";
|
2018-10-27 19:05:26 +02:00
|
|
|
|
2021-01-11 22:14:33 +01:00
|
|
|
writeRust = name: {
|
|
|
|
rustc ? pkgs.rustc,
|
|
|
|
rustcArgs ? [],
|
|
|
|
strip ? true
|
|
|
|
}:
|
|
|
|
makeBinWriter {
|
|
|
|
compileScript = ''
|
|
|
|
cp "$contentPath" tmp.rs
|
|
|
|
PATH=${makeBinPath [pkgs.gcc]} ${lib.getBin rustc}/bin/rustc ${lib.escapeShellArgs rustcArgs} -o "$out" tmp.rs
|
|
|
|
'';
|
|
|
|
inherit strip;
|
|
|
|
} name;
|
|
|
|
|
|
|
|
writeRustBin = name:
|
|
|
|
writeRust "/bin/${name}";
|
|
|
|
|
2018-10-27 19:05:26 +02:00
|
|
|
# writeJS takes a name an attributeset with libraries and some JavaScript sourcecode and
|
|
|
|
# returns an executable
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# writeJS "example" { libraries = [ pkgs.nodePackages.uglify-js ]; } ''
|
|
|
|
# var UglifyJS = require("uglify-js");
|
|
|
|
# var code = "function add(first, second) { return first + second; }";
|
|
|
|
# var result = UglifyJS.minify(code);
|
|
|
|
# console.log(result.code);
|
|
|
|
# ''
|
2018-12-02 00:56:16 +01:00
|
|
|
writeJS = name: { libraries ? [] }: content:
|
2018-10-27 19:05:26 +02:00
|
|
|
let
|
|
|
|
node-env = pkgs.buildEnv {
|
|
|
|
name = "node";
|
|
|
|
paths = libraries;
|
|
|
|
pathsToLink = [
|
|
|
|
"/lib/node_modules"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
in writeDash name ''
|
|
|
|
export NODE_PATH=${node-env}/lib/node_modules
|
2018-12-02 00:56:16 +01:00
|
|
|
exec ${pkgs.nodejs}/bin/node ${pkgs.writeText "js" content}
|
2018-10-27 19:05:26 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
# writeJSBin takes the same arguments as writeJS but outputs a directory (like writeScriptBin)
|
|
|
|
writeJSBin = name:
|
|
|
|
writeJS "/bin/${name}";
|
|
|
|
|
2019-04-08 15:44:23 +02:00
|
|
|
awkFormatNginx = builtins.toFile "awkFormat-nginx.awk" ''
|
|
|
|
awk -f
|
|
|
|
{sub(/^[ \t]+/,"");idx=0}
|
|
|
|
/\{/{ctx++;idx=1}
|
|
|
|
/\}/{ctx--}
|
|
|
|
{id="";for(i=idx;i<ctx;i++)id=sprintf("%s%s", id, "\t");printf "%s%s\n", id, $0}
|
|
|
|
'';
|
|
|
|
|
2020-02-18 19:53:18 +01:00
|
|
|
writeNginxConfig = name: text: pkgs.runCommandLocal name {
|
2019-03-20 18:46:43 +01:00
|
|
|
inherit text;
|
|
|
|
passAsFile = [ "text" ];
|
2020-10-30 01:22:29 +01:00
|
|
|
nativeBuildInputs = [ gawk gnused gixy ];
|
2019-03-20 18:46:43 +01:00
|
|
|
} /* sh */ ''
|
2019-04-08 15:44:23 +02:00
|
|
|
# nginx-config-formatter has an error - https://github.com/1connect/nginx-config-formatter/issues/16
|
2020-10-30 01:22:29 +01:00
|
|
|
awk -f ${awkFormatNginx} "$textPath" | sed '/^\s*$/d' > $out
|
|
|
|
gixy $out
|
2019-03-20 18:46:43 +01:00
|
|
|
'';
|
|
|
|
|
2018-10-27 19:05:26 +02:00
|
|
|
# writePerl takes a name an attributeset with libraries and some perl sourcecode and
|
|
|
|
# returns an executable
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# writePerl "example" { libraries = [ pkgs.perlPackages.boolean ]; } ''
|
|
|
|
# use boolean;
|
|
|
|
# print "Howdy!\n" if true;
|
|
|
|
# ''
|
|
|
|
writePerl = name: { libraries ? [] }:
|
2021-02-24 20:53:45 +01:00
|
|
|
makeScriptWriter {
|
|
|
|
interpreter = "${pkgs.perl.withPackages (p: libraries)}/bin/perl";
|
|
|
|
} name;
|
2018-10-27 19:05:26 +02:00
|
|
|
|
|
|
|
# writePerlBin takes the same arguments as writePerl but outputs a directory (like writeScriptBin)
|
|
|
|
writePerlBin = name:
|
|
|
|
writePerl "/bin/${name}";
|
|
|
|
|
2020-07-24 12:31:01 +02:00
|
|
|
# makePythonWriter takes python and compatible pythonPackages and produces python script writer,
|
|
|
|
# which validates the script with flake8 at build time. If any libraries are specified,
|
|
|
|
# python.withPackages is used as interpreter, otherwise the "bare" python is used.
|
|
|
|
makePythonWriter = python: pythonPackages: name: { libraries ? [], flakeIgnore ? [] }:
|
|
|
|
let
|
|
|
|
ignoreAttribute = optionalString (flakeIgnore != []) "--ignore ${concatMapStringsSep "," escapeShellArg flakeIgnore}";
|
|
|
|
in
|
|
|
|
makeScriptWriter {
|
|
|
|
interpreter =
|
|
|
|
if libraries == []
|
|
|
|
then "${python}/bin/python"
|
|
|
|
else "${python.withPackages (ps: libraries)}/bin/python"
|
|
|
|
;
|
|
|
|
check = writeDash "python2check.sh" ''
|
|
|
|
exec ${pythonPackages.flake8}/bin/flake8 --show-source ${ignoreAttribute} "$1"
|
|
|
|
'';
|
|
|
|
} name;
|
|
|
|
|
2018-10-27 19:05:26 +02:00
|
|
|
# writePython2 takes a name an attributeset with libraries and some python2 sourcecode and
|
|
|
|
# returns an executable
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# writePython2 "test_python2" { libraries = [ pkgs.python2Packages.enum ]; } ''
|
|
|
|
# from enum import Enum
|
|
|
|
#
|
|
|
|
# class Test(Enum):
|
|
|
|
# a = "success"
|
|
|
|
#
|
|
|
|
# print Test.a
|
|
|
|
# ''
|
2020-07-24 12:31:01 +02:00
|
|
|
writePython2 = makePythonWriter pkgs.python2 pkgs.python2Packages;
|
2018-10-27 19:05:26 +02:00
|
|
|
|
|
|
|
# writePython2Bin takes the same arguments as writePython2 but outputs a directory (like writeScriptBin)
|
|
|
|
writePython2Bin = name:
|
|
|
|
writePython2 "/bin/${name}";
|
|
|
|
|
|
|
|
# writePython3 takes a name an attributeset with libraries and some python3 sourcecode and
|
|
|
|
# returns an executable
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# writePython3 "test_python3" { libraries = [ pkgs.python3Packages.pyyaml ]; } ''
|
|
|
|
# import yaml
|
|
|
|
#
|
|
|
|
# y = yaml.load("""
|
|
|
|
# - test: success
|
|
|
|
# """)
|
|
|
|
# print(y[0]['test'])
|
|
|
|
# ''
|
2020-07-24 12:31:01 +02:00
|
|
|
writePython3 = makePythonWriter pkgs.python3 pkgs.python3Packages;
|
2018-10-27 19:05:26 +02:00
|
|
|
|
|
|
|
# writePython3Bin takes the same arguments as writePython3 but outputs a directory (like writeScriptBin)
|
|
|
|
writePython3Bin = name:
|
|
|
|
writePython3 "/bin/${name}";
|
|
|
|
}
|