cb2cfba6f7
Notably: - remove explicit arguments that match the defaults - convert everything to the right Nix types
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ lib, fetchurl, perlPackages, pkg-config, SDL, SDL_mixer, SDL_Pango, glib
|
|
, copyDesktopItems, makeDesktopItem
|
|
}:
|
|
perlPackages.buildPerlModule {
|
|
pname = "frozen-bubble";
|
|
version = "2.212";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://cpan/authors/id/K/KT/KTHAKORE/Games-FrozenBubble-2.212.tar.gz";
|
|
sha256 = "721e04ff69c5233060656bfbf4002aa1aeadd96c95351f0c57bb85b6da35a305";
|
|
};
|
|
patches = [ ./fix-compilation.patch ];
|
|
|
|
nativeBuildInputs = [ copyDesktopItems pkg-config ];
|
|
|
|
buildInputs = [ glib SDL SDL_mixer SDL_Pango perlPackages.SDL perlPackages.FileSlurp ];
|
|
propagatedBuildInputs = with perlPackages; [ AlienSDL CompressBzip2 FileShareDir FileWhich IPCSystemSimple LocaleMaketextLexicon ];
|
|
|
|
perlPreHook = "export LD=$CC";
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "frozen-bubble";
|
|
exec = "frozen-bubble";
|
|
desktopName = "Frozen Bubble";
|
|
genericName = "Frozen Bubble";
|
|
comment = "Arcade/reflex colour matching game";
|
|
categories = [ "Game" ];
|
|
})
|
|
];
|
|
|
|
meta = {
|
|
description = "Puzzle with Bubbles";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = with lib.maintainers; [ puckipedia ];
|
|
};
|
|
}
|