11 lines
118 B
Nix
11 lines
118 B
Nix
|
{ depot, ... }:
|
||
|
|
||
|
with depot.third_party;
|
||
|
|
||
|
naersk.buildPackage {
|
||
|
src = ./.;
|
||
|
|
||
|
buildInputs = [];
|
||
|
doCheck = true;
|
||
|
}
|