11 lines
137 B
Nix
11 lines
137 B
Nix
{ depot, ... }:
|
|
|
|
with depot.third_party;
|
|
|
|
naersk.buildPackage {
|
|
src = ./.;
|
|
|
|
buildInputs = [
|
|
pkgconfig openssl systemd.dev
|
|
];
|
|
}
|