mirror of
https://github.com/status-im/secp256k1.git
synced 2025-02-24 11:48:18 +00:00
10 lines
270 B
Nix
10 lines
270 B
Nix
with (import <nixpkgs> {}).pkgsi686Linux;
|
|
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)
|
|
'';
|
|
}
|