13 lines
251 B
Nix
13 lines
251 B
Nix
|
{ 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)
|
||
|
'';
|
||
|
}
|