summaryrefslogtreecommitdiff
path: root/shell.nix
blob: 09a5e2a8f9ad25465d2797e0b15036992c538e66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {
  buildInputs = with pkgs; [
    rustc
    cargo 
    gpgme 
    openssl
    openssl.dev
    git
    pkg-config
  ];
}