gig/packages/nix/shell.nix

12 lines
195 B
Nix

{...}: {
perSystem = {pkgs, ...}: {
devShells.default = pkgs.mkShell {
packages = with pkgs; [
cargo
pkg-config
openssl
libgit2
];
};
};
}