mirror of
https://tulpa.dev/cadey/gitea-release.git
synced 2025-02-28 15:11:19 +01:00
Allow users to customize the default branch name Closes #2 CHANGELOG: refer to gitea-release 0.3.0 here rustfmt Co-authored-by: Christine Dodrill <me@christine.website>
13 lines
267 B
Nix
13 lines
267 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
|
|
cargo-watch
|
|
openssl
|
|
pkg-config
|
|
libgit2
|
|
];
|
|
}
|