step-ca: Add systemd service file at correct location to get it picked up automatically

wip/yesman
Hedtke, Moritz 3 years ago
parent 53a17d2a44
commit 106b8616f7
  1. 9
      pkgs/tools/security/step-ca/default.nix

@ -2,6 +2,7 @@
, lib
, fetchFromGitHub
, buildGoModule
, coreutils
, pcsclite
, PCSC
, pkg-config
@ -26,6 +27,14 @@ buildGoModule rec {
lib.optionals (stdenv.isLinux) [ pcsclite ]
++ lib.optionals (stdenv.isDarwin) [ PCSC ];
postPatch = ''
substituteInPlace systemd/step-ca.service --replace "/bin/kill" "${coreutils}/bin/kill"
'';
postInstall = ''
install -Dm444 -t $out/lib/systemd/system systemd/step-ca.service
'';
# Tests fail on darwin with
# panic: httptest: failed to listen on a port: listen tcp6 [::1]:0: bind: operation not permitted [recovered]
# probably some sandboxing issue

Loading…
Cancel
Save