This repository has been archived on 2024-04-17. You can view files and clone it, but cannot push or open issues/pull-requests.
infrastructure/shell.nix

11 lines
287 B
Nix

{ ... }:
let
sources = import ./nix/sources.nix;
nixpkgs = import sources.nixpkgs { config = { allowUnfree = true; }; };
niv = import sources.niv { };
in with nixpkgs;
stdenv.mkDerivation {
name = "gitea-experiment";
buildInputs = [ niv.niv git terraform graphviz tarsnap ];
}