19 lines
483 B
Nix
19 lines
483 B
Nix
{ callPackage, symlinkJoin }:
|
|
let
|
|
extracted = callPackage ./extracted.nix { };
|
|
in
|
|
{
|
|
sims2 = symlinkJoin {
|
|
name = "The Sims 2";
|
|
paths = [
|
|
extracted.extracted_all.sims2-cd1
|
|
extracted.extracted_iso.sims2-cd1
|
|
extracted.extracted_all.sims2-cd2
|
|
extracted.extracted_iso.sims2-cd2
|
|
extracted.extracted_all.sims2-cd3
|
|
extracted.extracted_iso.sims2-cd3
|
|
extracted.extracted_all.sims2-cd4
|
|
extracted.extracted_iso.sims2-cd4
|
|
];
|
|
};
|
|
}
|