mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #84212 from prusnak/scummvm-games
scummvm: add broken-sword-25 and dreamweb games
This commit is contained in:
commit
919430d9f2
3 changed files with 33 additions and 1 deletions
|
@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Program to run certain classic graphical point-and-click adventure games (such as Monkey Island)";
|
||||
homepage = https://www.scummvm.org/;
|
||||
homepage = "https://www.scummvm.org/";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.peterhoeg ];
|
||||
platforms = platforms.linux;
|
||||
|
|
|
@ -74,6 +74,21 @@ in {
|
|||
files = [ "sky.*" ];
|
||||
};
|
||||
|
||||
broken-sword-25 = generic rec {
|
||||
plong = "Broken Sword 2.5";
|
||||
pshort = "sword25";
|
||||
pcode = "sword25";
|
||||
description = "A fan game of the Broken Sword series";
|
||||
version = "1.0";
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/scummvm/${pshort}-v${version}.zip";
|
||||
sha256 = "0ivj1vflfpih5bs5a902mab88s4d77fwm3ya3fk7pammzc8gjqzz";
|
||||
};
|
||||
sourceRoot = ".";
|
||||
docs = [ "README" "license-original.txt" ];
|
||||
files = [ "data.b25c" ];
|
||||
};
|
||||
|
||||
drascula-the-vampire-strikes-back = generic rec {
|
||||
plong = "Drascula: The Vampire Strikes Back";
|
||||
pshort = "drascula";
|
||||
|
@ -95,6 +110,21 @@ in {
|
|||
files = [ "Packet.001" ];
|
||||
};
|
||||
|
||||
dreamweb = generic rec {
|
||||
plong = "Dreamweb";
|
||||
pshort = "dreamweb";
|
||||
pcode = "dreamweb";
|
||||
description = "2D point-and-click cyberpunk top-down adventure game";
|
||||
version = "1.1";
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/scummvm/${pshort}-cd-uk-${version}.zip";
|
||||
sha256 = "0hh1p3rd7s0ckvri14lc6wdry9vv0vn4h4744v2n4zg63j8i6vsa";
|
||||
};
|
||||
sourceRoot = ".";
|
||||
docs = [ "license.txt" ];
|
||||
files = [ "DREAMWEB.*" "SPEECH" "track01.flac" ];
|
||||
};
|
||||
|
||||
flight-of-the-amazon-queen = generic rec {
|
||||
plong = "Flight of the Amazon Queen";
|
||||
pshort = "fotaq";
|
||||
|
|
|
@ -23784,7 +23784,9 @@ in
|
|||
|
||||
inherit (callPackage ../games/scummvm/games.nix { })
|
||||
beneath-a-steel-sky
|
||||
broken-sword-25
|
||||
drascula-the-vampire-strikes-back
|
||||
dreamweb
|
||||
flight-of-the-amazon-queen
|
||||
lure-of-the-temptress;
|
||||
|
||||
|
|
Loading…
Reference in a new issue