mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
21e3ff658a
Scilab note: the parameters already had pointed to nonexistent dirs before this set of refactoring. But that config wasn't even used by default.
49 lines
1.4 KiB
Nix
49 lines
1.4 KiB
Nix
{ stdenv, fetchgit, cmake, irrlicht, libpng, bzip2, curl, libogg, jsoncpp
|
|
, libjpeg, libXxf86vm, mesa, openal, libvorbis, xlibsWrapper, sqlite, luajit, freetype
|
|
, gettext
|
|
}:
|
|
|
|
let
|
|
version = "0.4.12";
|
|
sources = {
|
|
src = fetchgit {
|
|
url = "https://github.com/minetest/minetest.git";
|
|
rev = "7993a403f2c17a215e4895ba1848aaf69bb61980";
|
|
sha256 = "04v6fd9r9by8g47xbjzkhkgac5zpik01idngbbx2in4fxrg3ac7c";
|
|
};
|
|
data = fetchgit {
|
|
url = "https://github.com/minetest/minetest_game.git";
|
|
rev = "03c00a831d5c2fd37096449bee49557879068af1";
|
|
sha256 = "1qqhlfz296rmi3mmlvq1rwv7hq5w964w1scry095xaih7y11ycmk";
|
|
};
|
|
};
|
|
in stdenv.mkDerivation {
|
|
name = "minetest-${version}";
|
|
|
|
src = sources.src;
|
|
|
|
cmakeFlags = [
|
|
"-DENABLE_FREETYPE=1"
|
|
"-DENABLE_GETTEXT=1"
|
|
"-DCURL_INCLUDE_DIR=${curl}/include/curl"
|
|
"-DIRRLICHT_INCLUDE_DIR=${irrlicht}/include/irrlicht"
|
|
];
|
|
|
|
buildInputs = [
|
|
cmake irrlicht libpng bzip2 libjpeg curl libogg jsoncpp libXxf86vm mesa
|
|
openal libvorbis xlibsWrapper sqlite luajit freetype gettext
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -pv $out/share/minetest/games/minetest_game/
|
|
cp -rv ${sources.data}/* $out/share/minetest/games/minetest_game/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://minetest.net/;
|
|
description = "Infinite-world block sandbox game";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ jgeerds c0dehero ];
|
|
};
|
|
}
|