2020-11-26 13:30:31 +00:00
|
|
|
|
{ skawarePackages }:
|
2014-08-23 05:40:52 +01:00
|
|
|
|
|
2018-09-02 22:31:26 +01:00
|
|
|
|
with skawarePackages;
|
2014-08-23 05:40:52 +01:00
|
|
|
|
|
2020-01-23 15:42:57 +00:00
|
|
|
|
buildPackage {
|
|
|
|
|
pname = "execline";
|
2021-06-15 14:45:37 +01:00
|
|
|
|
version = "2.8.0.1";
|
|
|
|
|
sha256 = "1v9swmhw2rcrr9fmkmd7qh8qq0kslhmvxwz2a3bhan9ksabz8wx3";
|
2019-10-14 16:11:48 +01:00
|
|
|
|
|
2020-01-23 15:42:57 +00:00
|
|
|
|
description = "A small scripting language, to be used in place of a shell in non-interactive scripts";
|
2019-10-14 16:11:48 +01:00
|
|
|
|
|
2020-01-23 15:42:57 +00:00
|
|
|
|
outputs = [ "bin" "lib" "dev" "doc" "out" ];
|
2019-10-14 16:11:48 +01:00
|
|
|
|
|
2020-01-23 15:42:57 +00:00
|
|
|
|
# TODO: nsss support
|
|
|
|
|
configureFlags = [
|
|
|
|
|
"--libdir=\${lib}/lib"
|
|
|
|
|
"--dynlibdir=\${lib}/lib"
|
|
|
|
|
"--bindir=\${bin}/bin"
|
|
|
|
|
"--includedir=\${dev}/include"
|
|
|
|
|
"--with-sysdeps=${skalibs.lib}/lib/skalibs/sysdeps"
|
|
|
|
|
"--with-include=${skalibs.dev}/include"
|
|
|
|
|
"--with-lib=${skalibs.lib}/lib"
|
|
|
|
|
"--with-dynlib=${skalibs.lib}/lib"
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
|
# remove all execline executables from build directory
|
|
|
|
|
rm $(find -type f -mindepth 1 -maxdepth 1 -executable)
|
|
|
|
|
rm libexecline.*
|
|
|
|
|
|
|
|
|
|
mv doc $doc/share/doc/execline/html
|
|
|
|
|
mv examples $doc/share/doc/execline/examples
|
|
|
|
|
|
|
|
|
|
mv $bin/bin/execlineb $bin/bin/.execlineb-wrapped
|
2020-02-10 12:51:50 +00:00
|
|
|
|
|
|
|
|
|
# A wrapper around execlineb, which provides all execline
|
|
|
|
|
# tools on `execlineb`’s PATH.
|
|
|
|
|
# It is implemented as a C script, because on non-Linux,
|
|
|
|
|
# nested shebang lines are not supported.
|
|
|
|
|
# The -lskarnet has to come at the end to support static builds.
|
|
|
|
|
$CC \
|
2019-10-18 20:30:59 +01:00
|
|
|
|
-O \
|
|
|
|
|
-Wall -Wpedantic \
|
2020-01-23 15:42:57 +00:00
|
|
|
|
-D "EXECLINEB_PATH()=\"$bin/bin/.execlineb-wrapped\"" \
|
|
|
|
|
-D "EXECLINE_BIN_PATH()=\"$bin/bin\"" \
|
2019-10-18 20:30:59 +01:00
|
|
|
|
-I "${skalibs.dev}/include" \
|
|
|
|
|
-L "${skalibs.lib}/lib" \
|
2020-01-23 15:42:57 +00:00
|
|
|
|
-o "$bin/bin/execlineb" \
|
2020-02-10 12:51:50 +00:00
|
|
|
|
${./execlineb-wrapper.c} \
|
|
|
|
|
-lskarnet
|
2019-10-18 20:30:59 +01:00
|
|
|
|
'';
|
2020-01-23 15:42:57 +00:00
|
|
|
|
}
|