15 lines
466 B
Nix
15 lines
466 B
Nix
|
{ lib, runCommand, fetchtorrent, unar}:
|
||
|
let
|
||
|
torrent = fetchtorrent {
|
||
|
url = "https://archive.org/download/unreal-tournament-goty-gog-version-igg/unreal-tournament-goty-gog-version-igg_archive.torrent";
|
||
|
hash = "sha256-peJanxr1hyzn2yrayDwjSccqwoBt03x0P6eMvOnTUmQ=o";
|
||
|
};
|
||
|
in
|
||
|
runCommand "baseq3" {
|
||
|
nativeBuildInputs = [ unar ];
|
||
|
} ''
|
||
|
unar "${torrent}/Unreal.Tournament.GOTY.GOG.rar"
|
||
|
ls
|
||
|
cp "Unreal.Tournament.GOTY.GOG/setup_ut_goty_2.0.0.5.exe" $out
|
||
|
''
|