2022-04-27 09:35:20 +00:00
|
|
|
|
{ fetchFromGitHub, skawarePackages }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
with skawarePackages;
|
2022-04-27 09:35:20 +00:00
|
|
|
|
let
|
2023-01-20 10:41:00 +00:00
|
|
|
|
version = "2.9.1.0";
|
2022-04-27 09:35:20 +00:00
|
|
|
|
|
|
|
|
|
# Maintainer of manpages uses following versioning scheme: for every
|
|
|
|
|
# upstream $version he tags manpages release as ${version}.1, and,
|
|
|
|
|
# in case of extra fixes to manpages, new tags in form ${version}.2,
|
|
|
|
|
# ${version}.3 and so on are created.
|
|
|
|
|
manpages = fetchFromGitHub {
|
|
|
|
|
owner = "flexibeast";
|
|
|
|
|
repo = "execline-man-pages";
|
2023-01-20 10:41:00 +00:00
|
|
|
|
rev = "v2.9.1.0.1";
|
|
|
|
|
sha256 = "nZzzQFMUPmIgPS3aAIgcORr/TSpaLf8UtzBUFD7blt8=";
|
2022-04-27 09:35:20 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
in buildPackage {
|
|
|
|
|
inherit version;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
pname = "execline";
|
2023-01-20 10:41:00 +00:00
|
|
|
|
sha256 = "tdaOAh+gxGeQidJlEQpsgfTswUEGe/aG3MtL/QYcBAQ=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
description = "A small scripting language, to be used in place of a shell in non-interactive scripts";
|
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
|
outputs = [ "bin" "man" "lib" "dev" "doc" "out" ];
|
2020-04-24 23:36:52 +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
|
|
|
|
|
|
|
|
|
|
# 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 \
|
|
|
|
|
-O \
|
|
|
|
|
-Wall -Wpedantic \
|
|
|
|
|
-D "EXECLINEB_PATH()=\"$bin/bin/.execlineb-wrapped\"" \
|
|
|
|
|
-D "EXECLINE_BIN_PATH()=\"$bin/bin\"" \
|
|
|
|
|
-I "${skalibs.dev}/include" \
|
|
|
|
|
-L "${skalibs.lib}/lib" \
|
|
|
|
|
-o "$bin/bin/execlineb" \
|
|
|
|
|
${./execlineb-wrapper.c} \
|
|
|
|
|
-lskarnet
|
2022-04-27 09:35:20 +00:00
|
|
|
|
mkdir -p $man/share/
|
|
|
|
|
cp -vr ${manpages}/man* $man/share
|
2020-04-24 23:36:52 +00:00
|
|
|
|
'';
|
|
|
|
|
}
|