nixpkgs/pkgs/applications/audio/sidplayfp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv
, lib
2021-03-28 13:24:39 +01:00
, fetchFromGitHub
2021-06-16 09:53:56 +01:00
, nix-update-script
2021-03-28 13:24:39 +01:00
, autoreconfHook
, perl
, pkg-config
, libsidplayfp
, alsaSupport ? stdenv.hostPlatform.isLinux
, alsa-lib
, pulseSupport ? stdenv.hostPlatform.isLinux
, libpulseaudio
2021-03-28 13:24:39 +01:00
, out123Support ? stdenv.hostPlatform.isDarwin
, mpg123
}:
2018-07-01 11:36:57 +01:00
stdenv.mkDerivation rec {
pname = "sidplayfp";
2022-01-29 09:21:02 +00:00
version = "2.2.3";
2018-07-01 11:36:57 +01:00
2021-03-28 13:24:39 +01:00
src = fetchFromGitHub {
owner = "libsidplayfp";
repo = "sidplayfp";
rev = "v${version}";
2022-01-29 09:21:02 +00:00
sha256 = "sha256-R60Dh19GYM157ysmN8EOJ47eO8a7sdkEEF1TObG1xzk=";
2018-07-01 11:36:57 +01:00
};
2021-03-28 13:24:39 +01:00
nativeBuildInputs = [ autoreconfHook perl pkg-config ];
2021-03-28 13:24:39 +01:00
buildInputs = [ libsidplayfp ]
++ lib.optional alsaSupport alsa-lib
2021-03-28 13:24:39 +01:00
++ lib.optional pulseSupport libpulseaudio
++ lib.optional out123Support mpg123;
configureFlags = lib.optionals out123Support [
"--with-out123"
];
enableParallelBuilding = true;
2018-07-01 11:36:57 +01:00
2021-06-16 09:53:56 +01:00
passthru = {
updateScript = nix-update-script {
attrPath = pname;
};
};
meta = with lib; {
2018-07-01 11:36:57 +01:00
description = "A SID player using libsidplayfp";
2021-03-28 13:24:39 +01:00
homepage = "https://github.com/libsidplayfp/sidplayfp";
2018-07-01 11:36:57 +01:00
license = with licenses; [ gpl2Plus ];
2021-03-28 13:24:39 +01:00
maintainers = with maintainers; [ dezgeg OPNA2608 ];
platforms = platforms.all;
2018-07-01 11:36:57 +01:00
};
}