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