nom-nom-nix-gc/shell.nix

14 lines
192 B
Nix
Raw Normal View History

2022-12-19 20:02:47 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = [
pkgs.rustc
pkgs.cargo
2022-12-20 19:21:05 +01:00
pkgs.rust-analyzer
2022-12-22 13:50:53 +01:00
pkgs.pkg-config
];
buildInputs = [
pkgs.openssl
2022-12-19 20:02:47 +01:00
];
}