secp256k1-zkp/ci/mkshell.nix

13 lines
251 B
Nix
Raw Normal View History

2021-01-29 21:04:10 +00:00
{ pkgs }:
with pkgs;
mkShell {
buildInputs = [
bash file pkgconfig autoconf automake libtool gmp valgrind clang gcc
];
shellHook = ''
echo Running nix-shell with nixpkgs version: $(nix eval --raw nixpkgs.lib.version)
'';
}