8 lines
162 B
Nix
8 lines
162 B
Nix
self: super:
|
|
let customPackages = self.callPackage ./npm { };
|
|
in
|
|
with self; {
|
|
# Faster prettier for editors
|
|
prettierd = customPackages."@fsouza/prettierd";
|
|
}
|