Luke Granger-Brown
e14a850033
This should hopefully mean I don't have to repeatedly update the hash here when there aren't really any interesting changes.
14 lines
214 B
Nix
14 lines
214 B
Nix
{ depot ? import <depot> {} }:
|
|
|
|
let
|
|
inherit (depot.web) quotes;
|
|
inherit (depot) pkgs;
|
|
in pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
quotes.pythonEnv
|
|
nodejs
|
|
nodePackages.node2nix
|
|
|
|
black
|
|
];
|
|
}
|