chore(nix): add shell.nix file

This commit is contained in:
Jake Stanger 2023-07-26 21:22:19 +01:00
parent 00d5606f06
commit 1c68a97d33
No known key found for this signature in database
GPG Key ID: C51FC8F9CB0BEA61

17
shell.nix Normal file
View File

@ -0,0 +1,17 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
cargo
clippy
rustfmt
gtk3
gtk-layer-shell
gcc
openssl
];
nativeBuildInputs = with pkgs; [
pkg-config
];
}