rover/shell.nix
2023-01-22 14:59:29 +00:00

11 lines
200 B
Nix

with import <nixpkgs> {} ;
let p = callPackage ./. {};
in p.overrideAttrs(o: {
nativeBuildInputs = o.nativeBuildInputs ++ (with pkgs; [
socat
overmind
entr
]);
JUST_HACKING = 1;
})