mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
11 lines
214 B
Nix
11 lines
214 B
Nix
|
{ runCommand, git }: src:
|
||
|
|
||
|
runCommand "local-git-export" {} ''
|
||
|
cd ${src}
|
||
|
mkdir -p "$out"
|
||
|
for file in $(${git}/bin/git ls-files); do
|
||
|
mkdir -p "$out/$(dirname $file)"
|
||
|
cp -d $file "$out/$file"
|
||
|
done
|
||
|
''
|