mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 21:43:32 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
64 lines
1.5 KiB
Nix
64 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
SDL2,
|
|
callPackage,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "x16-emulator";
|
|
version = "48";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "X16Community";
|
|
repo = "x16-emulator";
|
|
rev = "r${finalAttrs.version}";
|
|
hash = "sha256-E4TosRoORCWLotOIXROP9oqwqo1IRSa6X13GnmuxE9A=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace-fail '/bin/echo' 'echo'
|
|
'';
|
|
|
|
dontConfigure = true;
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
zlib
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm 755 -t $out/bin/ x16emu
|
|
install -Dm 444 -t $out/share/doc/x16-emulator/ README.md
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
# upstream project recommends emulator and rom to be synchronized; passing
|
|
# through the version is useful to ensure this
|
|
inherit (finalAttrs) version;
|
|
emulator = finalAttrs.finalPackage;
|
|
rom = callPackage ./rom.nix { };
|
|
run = (callPackage ./run.nix { }) {
|
|
inherit (finalAttrs.finalPackage) emulator rom;
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://cx16forum.com/";
|
|
description = "Official emulator of CommanderX16 8-bit computer";
|
|
changelog = "https://github.com/X16Community/x16-emulator/blob/r${finalAttrs.version}/RELEASES.md";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
mainProgram = "x16emu";
|
|
inherit (SDL2.meta) platforms;
|
|
broken = stdenv.hostPlatform.isAarch64; # ofborg fails to compile it
|
|
};
|
|
})
|