Files
Alfis/shell.nix
T

7 lines
142 B
Nix
Raw Normal View History

2021-12-23 23:17:55 +03:00
{ pkgs ? import <nixpkgs> { } }:
2021-05-14 01:06:46 -07:00
2021-12-23 23:17:55 +03:00
pkgs.mkShell {
buildInputs =
[ pkgs.cargo pkgs.rustc pkgs.webkitgtk pkgs.pkg-config pkgs.kdialog ];
2021-05-14 01:06:46 -07:00
}