bf3bd5fee1
Most of the skaware packages already build just fine with pkgsStatic, however the wrapper scripts for execline and stdnotify-wrapper needed the `-lskarlib` argument to go at the end. `utmps` and `nsss` still fail with this error: ``` exec ./tools/install.sh -D -m 600 utmps-utmpd /bin/utmps-utmpd /build/utmps-0.0.3.1/tools/install.sh: line 48: can't create /bin/utmps-utmpd.tmp.479: Permission denied make: *** [Makefile:121: /bin/utmps-utmpd] Error 1 ```
38 lines
957 B
Nix
38 lines
957 B
Nix
{ lib, runCommandCC, skawarePackages }:
|
|
|
|
with skawarePackages;
|
|
|
|
let
|
|
# From https://skarnet.org/software/misc/sdnotify-wrapper.c,
|
|
# which is unversioned.
|
|
src = ./sdnotify-wrapper.c;
|
|
|
|
in runCommandCC "sdnotify-wrapper" {
|
|
|
|
outputs = [ "bin" "doc" "out" ];
|
|
|
|
meta = {
|
|
homepage = "https://skarnet.org/software/misc/sdnotify-wrapper.c";
|
|
description = "Use systemd sd_notify without having to link against libsystemd";
|
|
platforms = lib.platforms.all;
|
|
license = lib.licenses.isc;
|
|
maintainers = with lib.maintainers; [ Profpatsch ];
|
|
};
|
|
|
|
} ''
|
|
mkdir -p $bin/bin
|
|
mkdir $out
|
|
|
|
# the -lskarnet has to come at the end to support static builds
|
|
$CC \
|
|
-o $bin/bin/sdnotify-wrapper \
|
|
-I${skalibs.dev}/include \
|
|
-L${skalibs.lib}/lib \
|
|
${src} \
|
|
-lskarnet
|
|
|
|
mkdir -p $doc/share/doc/sdnotify-wrapper
|
|
# copy the documentation comment
|
|
sed -ne '/Usage:/,/*\//p' ${src} > $doc/share/doc/sdnotify-wrapper/README
|
|
''
|