2024-08-09 21:28:55 +00:00
|
|
|
{ appimageTools
|
|
|
|
, requireFile
|
|
|
|
, curlWithGnuTls
|
|
|
|
}:
|
|
|
|
|
|
|
|
appimageTools.wrapType2 rec {
|
|
|
|
pname = "worldofgoo2";
|
2024-11-11 22:57:11 +00:00
|
|
|
version = "1.0.12478.15";
|
2024-08-09 21:28:55 +00:00
|
|
|
|
|
|
|
src = requireFile {
|
2024-11-11 22:57:11 +00:00
|
|
|
name = "World_of_Goo_2-x86_64-${version}.appimage";
|
|
|
|
hash = "sha256-esFcDFxeCDdl1BVEYdTeHxgkLo0j9HMYmEnPK0fIEhA=";
|
2024-08-09 21:28:55 +00:00
|
|
|
message = "Please download World of Goo 2 from the Humble Store and add it to the store.";
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
extraPkgs = pkgs: [
|
|
|
|
pkgs.curlWithGnuTls
|
|
|
|
];
|
|
|
|
|
|
|
|
profile = ''
|
|
|
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib
|
|
|
|
'';
|
|
|
|
}
|