nixpkgs/pkgs/games/lgames/ltris/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
620 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, SDL, SDL_mixer }:
2017-06-16 14:32:30 +00:00
stdenv.mkDerivation rec {
pname = "ltris";
2022-07-31 19:26:40 +00:00
version = "1.2.5";
2017-06-16 14:32:30 +00:00
src = fetchurl {
url = "mirror://sourceforge/lgames/${pname}-${version}.tar.gz";
2022-07-31 19:26:40 +00:00
hash = "sha256-Ksb5TdQMTEzaJfjHVhgq27dSFvZxUnNUQ6OpAU+xwzM=";
2017-06-16 14:32:30 +00:00
};
2022-04-18 03:29:00 +00:00
buildInputs = [
SDL
SDL_mixer
];
hardeningDisable = [ "format" ];
2017-06-16 14:32:30 +00:00
meta = with lib; {
2022-04-18 03:29:00 +00:00
homepage = "https://lgames.sourceforge.io/LTris/";
2017-06-16 14:32:30 +00:00
description = "Tetris clone from the LGames series";
2022-04-18 03:29:00 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres ciil ];
inherit (SDL.meta) platforms;
2017-06-16 14:32:30 +00:00
};
}