k3s: format with nixfmt-rfc-style
[NixPkgs.git] / pkgs / games / hex-a-hop / default.nix
blob32a395195b5ea7c1a54feda61375b0c8749f4dfc
1 { lib, stdenv, fetchurl, fetchzip, SDL, SDL_mixer, SDL_ttf }:
3 stdenv.mkDerivation rec {
4   pname = "hex-a-hop";
5   version = "1.1.0";
7   src = fetchzip {
8     url = "https://downloads.sourceforge.net/project/hexahop/${version}/hex-a-hop-${version}.tar.gz";
9     sha256 = "sha256-fBSvNtgNR0aNofbvoYpM1e8ww4ARlXIvrQUvJqVGLlY=";
10   };
12   icon = fetchurl {
13     # Fetched from dfa365a90be5c52ef21235a9e90a865b04da3ad4, remove in the next version when the file is included
14     url = "https://sourceforge.net/p/hexahop/code/ci/dfa365a90be5c52ef21235a9e90a865b04da3ad4/tree/data/hex-a-hop.png?format=raw";
15     sha256 = "sha256-Vh/1wwRmC2eSD/+mk1Oqt7EX4a4k++nUAbWQD2P2hNA=";
16   };
18   desktop = fetchurl {
19     # Fetched from e67385078e4f248a3877ee1066613d231c0d0eee, remove in the next version when the file is included
20     url = "https://sourceforge.net/p/hexahop/code/ci/e67385078e4f248a3877ee1066613d231c0d0eee/tree/data/hex-a-hop.desktop?format=raw";
21     sha256 = "sha256-j6gKRq+8b1NDwP1WcCaScfmwNxAl78CfK6pemROrRak=";
22   };
24   buildInputs = [ SDL SDL_mixer SDL_ttf ];
26   makeFlags = [ "PREFIX=$(out)" ];
28   postFixup = ''
29     install -Dm644 ${icon} $out/share/icons/${pname}.png
30     install -Dm644 ${desktop} $out/share/applications/${pname}.desktop
31   '';
33   meta = {
34     description = "A puzzle game based on hexagonal tiles";
35     mainProgram = "hex-a-hop";
36     homepage = "http://hexahop.sourceforge.net";
37     license = with lib.licenses; [
38       gpl2Plus # Main code
39       cc-by-30 # Assets
40       lgpl2Plus # i18n
41       lgpl3Plus # source files from Lips of Suna
42     ];
43     platforms = lib.platforms.linux;
44     maintainers = with lib.maintainers; [ rampoina ];
45   };