2021-06-10 03:57:09 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, SDL2, alsa-lib, gtk3
|
2021-02-01 08:05:09 +00:00
|
|
|
, makeWrapper, libGLU, libGL, libarchive, libao, unzip, xdg-utils
|
2021-11-11 04:35:34 +00:00
|
|
|
, libepoxy, gdk-pixbuf, gnome, wrapGAppsHook
|
2017-09-03 13:22:39 +01:00
|
|
|
}:
|
2014-12-23 10:30:22 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-09-03 13:22:39 +01:00
|
|
|
version = "1.47";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "nestopia";
|
2017-09-03 13:22:39 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rdanbrook";
|
|
|
|
repo = "nestopia";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2017-09-03 13:22:39 +01:00
|
|
|
sha256 = "0frr0gvjh5mxzdhj0ii3sh671slgnzlm8naqlc4h87rx4p4sz2y2";
|
2014-12-23 10:30:22 +00:00
|
|
|
};
|
|
|
|
|
2015-03-07 13:33:38 +00:00
|
|
|
# nondeterministic failures when creating directories
|
|
|
|
enableParallelBuilding = false;
|
2014-12-23 10:30:22 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-12 13:08:56 +00:00
|
|
|
|
2017-09-03 13:22:39 +01:00
|
|
|
buildInputs = [
|
|
|
|
SDL2
|
2021-06-10 03:57:09 +01:00
|
|
|
alsa-lib
|
2021-11-11 04:35:34 +00:00
|
|
|
libepoxy
|
2017-09-03 13:22:39 +01:00
|
|
|
gtk3
|
2019-05-22 12:03:39 +01:00
|
|
|
gdk-pixbuf
|
2019-11-10 16:44:34 +00:00
|
|
|
libGLU libGL
|
2017-09-03 13:22:39 +01:00
|
|
|
libarchive
|
|
|
|
libao
|
2021-02-01 08:05:09 +00:00
|
|
|
xdg-utils
|
2021-05-07 22:18:14 +01:00
|
|
|
gnome.adwaita-icon-theme
|
2017-09-03 16:38:19 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2021-01-17 02:30:45 +00:00
|
|
|
pkg-config
|
2017-09-03 16:38:19 +01:00
|
|
|
makeWrapper
|
|
|
|
wrapGAppsHook
|
2021-02-20 21:01:53 +00:00
|
|
|
unzip
|
2017-09-03 13:22:39 +01:00
|
|
|
];
|
2014-12-23 10:30:22 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/{bin,share/nestopia}
|
|
|
|
make install PREFIX=$out
|
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
for f in $out/bin/*; do
|
|
|
|
wrapProgram $f \
|
|
|
|
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$out/share"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2017-09-03 13:22:39 +01:00
|
|
|
patches = [
|
|
|
|
#(fetchpatch {
|
|
|
|
# url = "https://github.com/rdanbrook/nestopia/commit/f4bc74ac4954328b25e961e7afb7337377084079.patch";
|
|
|
|
# name = "gcc6.patch";
|
|
|
|
# sha256 = "1jy0c85xsfk9hrv5a6v0kk48d94864qb62yyni9fp93kyl33y2p4";
|
|
|
|
#})
|
|
|
|
./gcc6.patch
|
|
|
|
./build-fix.patch
|
|
|
|
];
|
2014-12-23 10:30:22 +00:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://0ldsk00l.ca/nestopia/";
|
2014-12-23 10:30:22 +00:00
|
|
|
description = "NES emulator with a focus on accuracy";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = with lib.maintainers; [ MP2E ];
|
2014-12-23 10:30:22 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|