mirror of
https://tulpa.dev/cadey/gitea-release
synced 2025-10-06 05:52:40 +02:00
11 lines
239 B
Nix
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
|
|
];
|
|
}
|