1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/games/zaz/default.nix
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
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
2021-01-11 10:38:22 +01:00

59 lines
1.1 KiB
Nix

{ lib, stdenv
, fetchurl
, pkgconfig
, SDL
, SDL_image
, mesa
, libtheora
, libvorbis
, libogg
, ftgl
, freetype
}:
stdenv.mkDerivation rec {
pname = "zaz";
version = "1.0.0";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
sha256 = "15q3kxzl71m50byw37dshfsx5wp240ywah19ccmqmqarcldcqcp3";
};
nativeBuildInputs = [
pkgconfig
];
buildInputs = [
SDL.dev
SDL_image
mesa
libtheora
libvorbis.dev
libogg
ftgl
freetype
];
# Fix SDL include problems
NIX_CFLAGS_COMPILE="-I${SDL.dev}/include/SDL -I${SDL_image}/include/SDL";
# Fix linking errors
makeFlags = [
"ZAZ_LIBS+=-lSDL"
"ZAZ_LIBS+=-lvorbis"
"ZAZ_LIBS+=-ltheora"
"ZAZ_LIBS+=-logg"
"ZAZ_LIBS+=-ltheoraenc"
"ZAZ_LIBS+=-ltheoradec"
"ZAZ_LIBS+=-lvorbisfile"
];
meta = with lib; {
description = "A puzzle game about arranging balls in triplets, like Luxor, Zuma, or Puzzle Bobble";
homepage = "http://zaz.sourceforge.net/";
license = licenses.gpl3;
maintainers = with maintainers; [ fgaz ];
platforms = platforms.all;
};
}