11 lines
181 B
Nix
11 lines
181 B
Nix
|
with import <nixpkgs> { };
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "jeypsi";
|
||
|
|
||
|
GMP_PATH = "${gmp}/lib";
|
||
|
|
||
|
buildInputs = with pkgs; [ gdb gsl gmp pkgconfig ];
|
||
|
shellHook = "exec fish";
|
||
|
}
|