3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/sidplayfp/default.nix

48 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv
, lib
2021-03-28 13:24:39 +01:00
, fetchFromGitHub
, 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";
2021-03-28 13:24:39 +01:00
version = "2.1.1";
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}";
sha256 = "0s3xmg3yzfqbsnlh2y46w7b5jim5zq7mshs6hx03q8wdr75cvwh4";
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
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
};
}