gitea-release/shell.nix

13 lines
267 B
Nix
Raw Normal View History

2020-05-30 14:57:18 +00:00
let
sources = import ./nix/sources.nix;
pkgs = import <nixpkgs> { overlays = [ (import sources.nixpkgs-mozilla) ]; };
in pkgs.mkShell {
buildInputs = with pkgs; [
latest.rustChannels.stable.rust
cargo-watch
2020-05-30 14:57:18 +00:00
openssl
pkg-config
2020-05-31 19:33:39 +00:00
libgit2
2020-05-30 14:57:18 +00:00
];
}