nixpkgs/pkgs/by-name/sd/sdlpop/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

73 lines
2.1 KiB
Nix

{ lib, stdenv
, makeWrapper
, makeDesktopItem, copyDesktopItems
, fetchFromGitHub
, pkg-config
, SDL2, SDL2_image
}:
stdenv.mkDerivation rec {
pname = "sdlpop";
version = "1.23";
src = fetchFromGitHub {
owner = "NagyD";
repo = "SDLPoP";
rev = "v${version}";
sha256 = "sha256-UI7NfOC/+druRYL5g2AhIjTPEq4ta1qEThcxgyrFjHY=";
};
nativeBuildInputs = [ pkg-config makeWrapper copyDesktopItems ];
buildInputs = [ SDL2 SDL2_image ];
makeFlags = [ "-C" "src" ];
preBuild = ''
substituteInPlace src/Makefile \
--replace "CC = gcc" "CC = ${stdenv.cc.targetPrefix}cc" \
--replace "CFLAGS += -I/opt/local/include" "CFLAGS += -I${SDL2.dev}/include/SDL2 -I${SDL2_image}/include/SDL2"
'';
# The prince binary expects two things of the working directory it is called from:
# (1) There is a subdirectory "data" containing the level data.
# (2) The working directory is writable, so save and quicksave files can be created.
# Our solution is to ensure that ~/.local/share/sdlpop is the working
# directory, symlinking the data files into it. This is the task of the
# prince.sh wrapper.
installPhase = ''
runHook preInstall
install -Dm755 prince $out/bin/.prince-bin
substituteAll ${./prince.sh} $out/bin/prince
chmod +x $out/bin/prince
mkdir -p $out/share/sdlpop
cp -r data doc mods SDLPoP.ini $out/share/sdlpop
install -Dm755 data/icon.png $out/share/icons/hicolor/32x32/apps/sdlpop.png
runHook postInstall
'';
desktopItems = [ (makeDesktopItem {
name = "sdlpop";
icon = "sdlpop";
exec = "prince";
desktopName = "SDLPoP";
comment = "An open-source port of Prince of Persia";
categories = [ "Game" "AdventureGame" ];
}) ];
meta = with lib; {
description = "Open-source port of Prince of Persia";
homepage = "https://github.com/NagyD/SDLPoP";
changelog = "https://github.com/NagyD/SDLPoP/blob/v${version}/doc/ChangeLog.txt";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ iblech ];
platforms = platforms.unix;
mainProgram = "prince";
};
}