secp256k1/ci/shell.nix

10 lines
256 B
Nix
Raw Normal View History

2020-12-22 16:42:08 +01:00
with (import <nixpkgs> {});
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)
'';
}