2019-06-16 20:59:06 +01:00
|
|
|
{ skawarePackages, makeWrapper }:
|
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
|
|
|
|
2018-09-02 22:31:26 +01:00
|
|
|
buildPackage {
|
|
|
|
pname = "execline";
|
2019-03-04 14:28:15 +00:00
|
|
|
version = "2.5.1.0";
|
|
|
|
sha256 = "0xr6yb50wm6amj1wc7jmxyv7hvlx2ypbnww1vc288j275625d9xi";
|
2014-08-23 05:40:52 +01:00
|
|
|
|
2018-09-02 22:31:26 +01:00
|
|
|
description = "A small scripting language, to be used in place of a shell in non-interactive scripts";
|
2014-08-23 05:40:52 +01:00
|
|
|
|
2018-07-22 16:03:19 +01:00
|
|
|
outputs = [ "bin" "lib" "dev" "doc" "out" ];
|
|
|
|
|
2019-02-23 20:12:16 +00:00
|
|
|
setupHooks = [ makeWrapper ];
|
|
|
|
|
2018-09-02 16:04:57 +01:00
|
|
|
# TODO: nsss support
|
2014-12-23 16:06:27 +00:00
|
|
|
configureFlags = [
|
2018-07-22 16:03:19 +01:00
|
|
|
"--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"
|
2018-09-02 22:31:26 +01:00
|
|
|
];
|
2014-08-23 05:40:52 +01:00
|
|
|
|
2018-07-22 16:03:19 +01:00
|
|
|
postInstall = ''
|
2018-09-02 22:31:26 +01:00
|
|
|
# remove all execline executables from build directory
|
|
|
|
rm $(find -type f -mindepth 1 -maxdepth 1 -executable)
|
|
|
|
rm libexecline.*
|
|
|
|
|
2018-07-22 16:03:19 +01:00
|
|
|
mv doc $doc/share/doc/execline/html
|
|
|
|
mv examples $doc/share/doc/execline/examples
|
2019-02-23 20:12:16 +00:00
|
|
|
|
|
|
|
# finally, add all tools to PATH so they are available
|
|
|
|
# from within execlineb scripts by default
|
|
|
|
wrapProgram $bin/bin/execlineb \
|
|
|
|
--suffix PATH : $bin/bin
|
2018-07-22 16:03:19 +01:00
|
|
|
'';
|
|
|
|
|
2014-08-23 05:40:52 +01:00
|
|
|
}
|