oscar64: v1.32.263 -> v1.32.265 (#455571)

This commit is contained in:
Sandro
2025-11-10 18:29:19 +00:00
committed by GitHub

View File

@@ -3,28 +3,24 @@
stdenv, stdenv,
nix-update-script, nix-update-script,
fetchFromGitHub, fetchFromGitHub,
fetchpatch, fetchpatch2,
}: }:
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "oscar64"; pname = "oscar64";
version = "1.32.263"; version = "1.32.265";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "drmortalwombat"; owner = "drmortalwombat";
repo = "oscar64"; repo = "oscar64";
tag = "v${finalAttrs.version}"; tag = "v${finalAttrs.version}";
hash = "sha256-g8HUJcoI7fBmypPO79QYiOdhIYh1/sctSaEC8RLaM+s="; hash = "sha256-nPwebydRFHoIWp2sbfPaudKj/sPZRKamYdIuSVZ9dcc=";
}; };
# FIXME: can be removed whenever the version is bumped.
patches = [ patches = [
(fetchpatch { (fetchpatch2 {
url = "https://github.com/drmortalwombat/oscar64/commit/3b0f954144e36903fd396c099714722f9fa2430a.patch"; name = "fix-make-install.patch";
hash = "sha256-6S7Gx9pZSNBHxX9uyS0zApe263dUo5DGviEczpP1FpQ="; url = "https://github.com/drmortalwombat/oscar64/commit/af9e06a467be07422bc87058bebdef79e0a94ea1.patch?full_index=1";
}) hash = "sha256-YsbdYi+dwLQSGOT8krJsFqJxS0EpIiQqavQpH0nl7S0=";
(fetchpatch {
url = "https://github.com/drmortalwombat/oscar64/commit/744f496f0f71fae098063a1f3ed71722d31f7b1a.patch";
hash = "sha256-84UBgVuKN7HMdkQfWUXMCfQSNqAe2QQ2yiifEN1JuOU=";
}) })
]; ];
@@ -55,7 +51,5 @@ stdenv.mkDerivation (finalAttrs: {
maintainers = [ lib.maintainers.nekowinston ]; maintainers = [ lib.maintainers.nekowinston ];
mainProgram = "oscar64"; mainProgram = "oscar64";
platforms = lib.platforms.unix; platforms = lib.platforms.unix;
# FIXME: enable aarch64-linux for the next version.
broken = stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux;
}; };
}) })