We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ba010e commit 480101eCopy full SHA for 480101e
pkgs/os-specific/bsd/freebsd/pkgs/jexec.nix
@@ -0,0 +1,13 @@
1
+{
2
+ lib,
3
+ mkDerivation,
4
+ libjail,
5
+}:
6
+mkDerivation {
7
+ path = "usr.sbin/jexec";
8
+ buildInputs = [
9
+ libjail
10
+ ];
11
+ meta.mainProgram = "jexec";
12
+ meta.platforms = lib.platforms.freebsd;
13
+}
pkgs/os-specific/bsd/freebsd/pkgs/jls.nix
@@ -0,0 +1,15 @@
+ libxo,
+ path = "usr.sbin/jls";
+ libxo
+ meta.mainProgram = "jls";
14
15
0 commit comments