Files
nixpkgs/pkgs/by-name/si/sidplayfp/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

73 lines
1.4 KiB
Nix

{
stdenv,
lib,
fetchFromGitHub,
gitUpdater,
alsaSupport ? stdenv.hostPlatform.isLinux,
alsa-lib,
autoreconfHook,
pulseSupport ? stdenv.hostPlatform.isLinux,
libpulseaudio,
libsidplayfp,
out123Support ? stdenv.hostPlatform.isDarwin,
mpg123,
perl,
pkg-config,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "sidplayfp";
version = "2.15.1";
src = fetchFromGitHub {
owner = "libsidplayfp";
repo = "sidplayfp";
rev = "v${finalAttrs.version}";
hash = "sha256-IUyXkHs8QfWhuTVYrPbmMU/mhfGwGminypLmGYimcLg=";
};
strictDeps = true;
nativeBuildInputs = [
autoreconfHook
perl
pkg-config
];
buildInputs = [
libsidplayfp
]
++ lib.optionals alsaSupport [
alsa-lib
]
++ lib.optionals pulseSupport [
libpulseaudio
]
++ lib.optionals out123Support [
mpg123
];
configureFlags = [
(lib.strings.withFeature out123Support "out123")
];
enableParallelBuilding = true;
passthru = {
updateScript = gitUpdater { rev-prefix = "v"; };
};
meta = {
description = "SID player using libsidplayfp";
homepage = "https://github.com/libsidplayfp/sidplayfp";
changelog = "https://github.com/libsidplayfp/sidplayfp/releases/tag/v${finalAttrs.version}";
license = with lib.licenses; [ gpl2Plus ];
mainProgram = "sidplayfp";
maintainers = with lib.maintainers; [
dezgeg
OPNA2608
];
platforms = lib.platforms.all;
};
})