mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
63 lines
1.5 KiB
Nix
63 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
|
|
};
|
|
})
|