12 lines
171 B
Nix
12 lines
171 B
Nix
{
|
|
pkgs ? import <nixos-unstable> { },
|
|
}:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
inkscape
|
|
icoutils
|
|
imagemagick
|
|
nodePackages_latest.svgo
|
|
];
|
|
}
|