4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
56 lines
1.9 KiB
Nix
56 lines
1.9 KiB
Nix
{ lib, stdenv, fetchFromGitHub, SDL, SDL_ttf, SDL_gfx, SDL_mixer, autoreconfHook,
|
|
libpng, glew, makeDesktopItem }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hyperrogue";
|
|
version = "11.3o";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zenorogue";
|
|
repo = "hyperrogue";
|
|
rev = "v${version}";
|
|
sha256 = "0bijgbqpc867pq8lbwwvcnc713gm51mmz625xb5br0q2qw09nkyh";
|
|
};
|
|
|
|
CPPFLAGS = "-I${SDL.dev}/include/SDL";
|
|
|
|
buildInputs = [ autoreconfHook SDL SDL_ttf SDL_gfx SDL_mixer libpng glew ];
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = "hyperrogue";
|
|
desktopName = "HyperRogue";
|
|
genericName = "HyperRogue";
|
|
comment = meta.description;
|
|
icon = "hyperrogue";
|
|
exec = "hyperrogue";
|
|
categories = "Game;AdventureGame;";
|
|
};
|
|
|
|
postInstall = ''
|
|
install -m 444 -D ${desktopItem}/share/applications/hyperrogue.desktop \
|
|
$out/share/applications/hyperrogue.desktop
|
|
install -m 444 -D hyperroid/app/src/main/res/drawable-ldpi/icon.png \
|
|
$out/share/icons/hicolor/36x36/apps/hyperrogue.png
|
|
install -m 444 -D hyperroid/app/src/main/res/drawable-mdpi/icon.png \
|
|
$out/share/icons/hicolor/48x48/apps/hyperrogue.png
|
|
install -m 444 -D hyperroid/app/src/main/res/drawable-hdpi/icon.png \
|
|
$out/share/icons/hicolor/72x72/apps/hyperrogue.png
|
|
install -m 444 -D hyperroid/app/src/main/res/drawable-xhdpi/icon.png \
|
|
$out/share/icons/hicolor/96x96/apps/hyperrogue.png
|
|
install -m 444 -D hyperroid/app/src/main/res/drawable-xxhdpi/icon.png \
|
|
$out/share/icons/hicolor/144x144/apps/hyperrogue.png
|
|
install -m 444 -D hyperroid/app/src/main/res/drawable-xxxhdpi/icon.png \
|
|
$out/share/icons/hicolor/192x192/apps/hyperrogue.png
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.roguetemple.com/z/hyper/";
|
|
description = "A roguelike game set in hyperbolic geometry";
|
|
maintainers = with maintainers; [ rardiol ];
|
|
license = licenses.gpl2;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|