coolify/csb.nix
2022-08-11 08:18:17 +00:00

9 lines
123 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "git";
buildInputs = [
git
git-lfs
];
}