11 lines
140 B
Nix
11 lines
140 B
Nix
|
{ depot ? import ../../../../.. {}
|
||
|
, pkgs ? depot.third_party.nixpkgs
|
||
|
, ...
|
||
|
}:
|
||
|
|
||
|
pkgs.mkShell {
|
||
|
nativeBuildInputs = [
|
||
|
pkgs.cbqn
|
||
|
];
|
||
|
}
|