irrlichtmt: remove at 1.9.0mt13
Minetest's irrlicht fork has been moved into the minetest repo.
This commit is contained in:
@@ -1,52 +0,0 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, zlib
|
||||
, libpng
|
||||
, libjpeg
|
||||
, libGL
|
||||
, libX11
|
||||
, libXi
|
||||
, libXext
|
||||
, Cocoa
|
||||
, Kernel
|
||||
}:
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "irrlichtmt";
|
||||
version = "1.9.0mt13";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "minetest";
|
||||
repo = "irrlicht";
|
||||
rev = finalAttrs.version;
|
||||
hash = "sha256-BlQd7zbpvQnxqLv3IaHWrXzJ1pJFbQQ3DNWDAj14/YY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
zlib
|
||||
libpng
|
||||
libjpeg
|
||||
libGL
|
||||
] ++ (if stdenv.hostPlatform.isDarwin then [
|
||||
Cocoa
|
||||
Kernel
|
||||
] else [
|
||||
libX11
|
||||
libXi
|
||||
libXext
|
||||
]);
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/minetest/irrlicht";
|
||||
license = lib.licenses.zlib;
|
||||
maintainers = with lib.maintainers; [ DeeUnderscore ];
|
||||
description = "Minetest project's fork of Irrlicht, a realtime 3D engine written in C++";
|
||||
};
|
||||
})
|
||||
@@ -680,6 +680,7 @@ mapAliases ({
|
||||
ipfs-migrator-unwrapped = kubo-migrator-unwrapped; # Added 2022-09-27
|
||||
ipfs-migrator = kubo-migrator; # Added 2022-09-27
|
||||
iproute = iproute2; # moved from top-level 2021-03-14
|
||||
irrlichtmt = throw "irrlichtmt has been removed because it was moved into the Minetest repo"; # Added 2024-08-12
|
||||
iso-flags-png-320x420 = lib.warn "iso-flags-png-320x420 has been renamed to iso-flags-png-320x240" iso-flags-png-320x240; # Added 2024-07-17
|
||||
|
||||
### J ###
|
||||
|
||||
@@ -20960,10 +20960,6 @@ with pkgs;
|
||||
inherit (darwin.apple_sdk.frameworks) Cocoa OpenGL IOKit;
|
||||
};
|
||||
|
||||
irrlichtmt = callPackage ../development/libraries/irrlichtmt {
|
||||
inherit (darwin.apple_sdk.frameworks) Cocoa Kernel;
|
||||
};
|
||||
|
||||
isocodes = callPackage ../development/libraries/iso-codes { };
|
||||
|
||||
iso-flags = callPackage ../data/icons/iso-flags { };
|
||||
|
||||
Reference in New Issue
Block a user