7cadc17591
For a while now, we’ve had these separate derivations for the skaware manpages. That was fine in the beginning, because it was not entirely clear whether the manpage project would be long-lived. Given that the collection of third-party manpages is now extensive and updated regularly, plus it is sanctioned by skarnet, we can remove this additional hurdle to using skaware. The buildManPage structure is kept, instead of building them in a separate `default.nix`, we add a field `manpages` to `skawarePackages.buildPackage`, which adds the `"man"` output and copies everything from the manpages output. For backwards-compat, the manpage derivation is exposed in the `passthru` and referenced by the `*-man-pages` attributes. ~~~ The `with skawarePackages;` scope is removed from all packages, and used explicitly for all functions, while packages get added to the package import header.
36 lines
992 B
Nix
36 lines
992 B
Nix
{ stdenv, lib, runCommandCC, skawarePackages, skalibs }:
|
|
|
|
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";
|
|
mainProgram = "sdnotify-wrapper";
|
|
platforms = lib.platforms.linux;
|
|
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
|
|
''
|