dunlin/shell.nix

11 lines
205 B
Nix
Raw Normal View History

2022-12-19 18:49:10 +00:00
with import <nixpkgs> {} ;
let just = callPackage ./. {};
in just.overrideAttrs(o: {
nativeBuildInputs = o.nativeBuildInputs ++ (with pkgs; [
socat
overmind
entr
]);
2022-12-19 18:49:10 +00:00
JUST_HACKING = 1;
})