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
52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, doxygen ? null, pkgconfig, freetype ? null, glib, harfbuzz ? null
|
|
, liblcf, libpng, libsndfile ? null, libvorbis ? null, libxmp ? null
|
|
, libXcursor, libXext, libXi, libXinerama, libXrandr, libXScrnSaver, libXxf86vm
|
|
, mpg123 ? null, opusfile ? null, pcre, pixman, SDL2_mixer, speexdsp ? null, wildmidi ? null, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "easyrpg-player";
|
|
version = "0.6.2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "EasyRPG";
|
|
repo = "Player";
|
|
rev = version;
|
|
sha256 = "103ywad12dcfjpf97kyx22smilqrw1f20xcfvjjr4mm3walc2mdp";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake doxygen pkgconfig ];
|
|
|
|
buildInputs = [
|
|
freetype
|
|
glib
|
|
harfbuzz
|
|
liblcf
|
|
libpng
|
|
libsndfile
|
|
libvorbis
|
|
libxmp
|
|
libXcursor
|
|
libXext
|
|
libXi
|
|
libXinerama
|
|
libXrandr
|
|
libXScrnSaver
|
|
libXxf86vm
|
|
mpg123
|
|
opusfile
|
|
SDL2_mixer
|
|
pcre
|
|
pixman
|
|
speexdsp
|
|
wildmidi
|
|
zlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "RPG Maker 2000/2003 and EasyRPG games interpreter";
|
|
homepage = "https://easyrpg.org/";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ yegortimoshenko ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|