Skip to content

Commit

Permalink
add a nix shell
Browse files Browse the repository at this point in the history
  • Loading branch information
sdaqo committed Jul 11, 2024
1 parent 7356e32 commit afdb45e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use nix
8 changes: 8 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{pkgs ? import <nixpkgs> {}}:

with pkgs;
mkShell {
packages = [cargo];
buildInputs = [rustc pkg-config];
nativeBuildInputs = [openssl gtk3];
}

0 comments on commit afdb45e

Please sign in to comment.