17 lines
267 B
Nix
17 lines
267 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
unstable = import <unstable> {};
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
unstable.rustc
|
|
cargo
|
|
libressl
|
|
rustfmt
|
|
mdbook
|
|
];
|
|
nativeBuildInputs = with pkgs; [
|
|
pkg-config
|
|
];
|
|
}
|