mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
Merge pull request #248513 from OPNA2608/init/nuked-md
nuked-md: init at 1.2
This commit is contained in:
commit
9f039b93af
72
pkgs/applications/emulators/nuked-md/default.nix
Normal file
72
pkgs/applications/emulators/nuked-md/default.nix
Normal file
@ -0,0 +1,72 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, gitUpdater
|
||||
, cmake
|
||||
, SDL2
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "nuked-md";
|
||||
version = "1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nukeykt";
|
||||
repo = "Nuked-MD";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-Pe+TSu9FBUhxtACq+6jMbrUxiwKLOJgQbEcmUrcrjMs=";
|
||||
};
|
||||
|
||||
# Interesting detail about our SDL2 packaging:
|
||||
# Because we build it with the configure script instead of CMake, we ship sdl2-config.cmake instead of SDL2Config.cmake
|
||||
# The former doesn't set SDL2_FOUND while the latter does (like CMake config scripts should), which causes this issue:
|
||||
#
|
||||
# CMake Error at CMakeLists.txt:5 (find_package):
|
||||
# Found package configuration file:
|
||||
#
|
||||
# <SDL2.dev>/lib/cmake/SDL2/sdl2-config.cmake
|
||||
#
|
||||
# but it set SDL2_FOUND to FALSE so package "SDL2" is considered to be NOT
|
||||
# FOUND.
|
||||
postPatch = ''
|
||||
substituteInPlace CMakeLists.txt \
|
||||
--replace 'SDL2 REQUIRED' 'SDL2'
|
||||
'';
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
SDL2
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -Dm755 Nuked-MD $out/bin/Nuked-MD
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
updateScript = gitUpdater {
|
||||
rev-prefix = "v";
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Cycle accurate Mega Drive emulator";
|
||||
longDescription = ''
|
||||
Cycle accurate Mega Drive core. The goal of this project is to emulate Sega Mega Drive chipset as accurately as
|
||||
possible using decapped chips photos.
|
||||
'';
|
||||
homepage = "https://github.com/nukeykt/Nuked-MD";
|
||||
license = licenses.gpl2Plus;
|
||||
mainProgram = "Nuked-MD";
|
||||
maintainers = with maintainers; [ OPNA2608 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
})
|
@ -2613,6 +2613,8 @@ with pkgs;
|
||||
|
||||
np2kai = callPackage ../applications/emulators/np2kai { };
|
||||
|
||||
nuked-md = callPackage ../applications/emulators/nuked-md { };
|
||||
|
||||
oberon-risc-emu = callPackage ../applications/emulators/oberon-risc-emu { };
|
||||
|
||||
openmsx = callPackage ../applications/emulators/openmsx { };
|
||||
|
Loading…
Reference in New Issue
Block a user