mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
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
65 lines
1.1 KiB
Nix
65 lines
1.1 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitLab
|
|
, bzip2
|
|
, cmake
|
|
, expat
|
|
, irrlicht
|
|
, libGL
|
|
, libGLU
|
|
, libXxf86vm
|
|
, libjpeg
|
|
, libpng
|
|
, libvorbis
|
|
, openal
|
|
, pkg-config
|
|
, sqlite
|
|
, xlibsWrapper
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "voxelands";
|
|
version = "1704.00";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0yj9z9nygpn0z63y739v72l3kg81wd71xgix5k045vfzhqsam5m0";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DIRRLICHT_INCLUDE_DIR=${irrlicht}/include/irrlicht"
|
|
"-DCMAKE_C_FLAGS_RELEASE=-DNDEBUG"
|
|
"-DCMAKE_CXX_FLAGS_RELEASE=-DNDEBUG"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
bzip2
|
|
expat
|
|
irrlicht
|
|
libGL
|
|
libGLU
|
|
libXxf86vm
|
|
libjpeg
|
|
libpng
|
|
libvorbis
|
|
openal
|
|
sqlite
|
|
xlibsWrapper
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://voxelands.net/";
|
|
description = "Infinite-world block sandbox game based on Minetest";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ];
|
|
broken = stdenv.isAarch64; # build fails with "libIrrlicht.so: undefined reference to `png_init_filter_functions_neon'"
|
|
};
|
|
}
|