depot/web/quotes/shell.nix
Luke Granger-Brown e14a850033 web/quotes: move to node2nix
This should hopefully mean I don't have to repeatedly update the hash here when
there aren't really any interesting changes.
2021-07-25 08:00:49 +01:00

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
];
}