mirror of
https://github.com/jb55/nostril.git
synced 2024-11-14 06:19:07 -05:00
6 lines
86 B
Nix
6 lines
86 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
with pkgs;
|
||
|
mkShell {
|
||
|
buildInputs = [ secp256k1 ];
|
||
|
}
|