Skip to content

Commit 480101e

Browse files
committed
freebsd.{jls,jexec}: init
1 parent 2ba010e commit 480101e

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
lib,
3+
mkDerivation,
4+
libjail,
5+
libxo,
6+
}:
7+
mkDerivation {
8+
path = "usr.sbin/jls";
9+
buildInputs = [
10+
libjail
11+
libxo
12+
];
13+
meta.mainProgram = "jls";
14+
meta.platforms = lib.platforms.freebsd;
15+
}

0 commit comments

Comments
 (0)