9 lines
123 B
Nix
9 lines
123 B
Nix
|
with import <nixpkgs> {};
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "git";
|
||
|
buildInputs = [
|
||
|
git
|
||
|
git-lfs
|
||
|
];
|
||
|
}
|