tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pppd: inherit nixos test into passthru.tests
Martin Weinelt
3 years ago
728c97f8
43327d29
+5
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
ppp
default.nix
+5
pkgs/tools/networking/ppp/default.nix
···
6
6
, libxcrypt
7
7
, openssl
8
8
, bash
9
9
+
, nixosTests
9
10
}:
10
11
11
12
stdenv.mkDerivation rec {
···
63
64
postFixup = ''
64
65
substituteInPlace "$out/bin/pon" --replace "/usr/sbin" "$out/bin"
65
66
'';
67
67
+
68
68
+
passthru.tests = {
69
69
+
inherit (nixosTests) pppd;
70
70
+
};
66
71
67
72
meta = with lib; {
68
73
homepage = "https://ppp.samba.org";