tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ulogd: remove with lib
kyehn
4 months ago
849f6c5e
da2bcfcb
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ul
ulogd
package.nix
+4
-4
pkgs/by-name/ul/ulogd/package.nix
···
77
78
passthru.tests = { inherit (nixosTests) ulogd; };
79
80
-
meta = with lib; {
81
description = "Userspace logging daemon for netfilter/iptables";
82
mainProgram = "ulogd";
83
···
94
'';
95
96
homepage = "https://www.netfilter.org/projects/ulogd/index.html";
97
-
license = licenses.gpl2Only;
98
-
platforms = platforms.linux;
99
-
maintainers = with maintainers; [ p-h ];
100
};
101
})
···
77
78
passthru.tests = { inherit (nixosTests) ulogd; };
79
80
+
meta = {
81
description = "Userspace logging daemon for netfilter/iptables";
82
mainProgram = "ulogd";
83
···
94
'';
95
96
homepage = "https://www.netfilter.org/projects/ulogd/index.html";
97
+
license = lib.licenses.gpl2Only;
98
+
platforms = lib.platforms.linux;
99
+
maintainers = with lib.maintainers; [ p-h ];
100
};
101
})