1
0
mirror of https://tulpa.dev/cadey/gitea-release synced 2025-10-06 05:52:40 +02:00
Files
rust-gitea-sdk/shell.nix
Christine Dodrill 94a0431ed5 initial commit
2020-05-30 10:57:18 -04:00

11 lines
239 B
Nix

let
sources = import ./nix/sources.nix;
pkgs = import <nixpkgs> { overlays = [ (import sources.nixpkgs-mozilla) ]; };
in pkgs.mkShell {
buildInputs = with pkgs; [
latest.rustChannels.stable.rust
openssl
pkg-config
];
}