Skip to content

Commit

Permalink
sidplayfp: 1.4.4 -> 2.0.2, fix API options
Browse files Browse the repository at this point in the history
  • Loading branch information
OPNA2608 authored and Jon committed Aug 4, 2020
1 parent ce84625 commit e60a22b
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions pkgs/applications/audio/sidplayfp/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,36 @@
{ stdenv, fetchurl, pkgconfig, libsidplayfp }:
{ stdenv
, lib
, fetchurl
, pkgconfig
, libsidplayfp
, alsaSupport ? stdenv.hostPlatform.isLinux
, alsaLib
, pulseSupport ? stdenv.hostPlatform.isLinux
, libpulseaudio
}:

assert alsaSupport -> alsaLib != null;
assert pulseSupport -> libpulseaudio != null;
let
inherit (lib) optional;
inherit (lib.versions) majorMinor;
in
stdenv.mkDerivation rec {
version = "1.4.4";
pname = "sidplayfp";
version = "2.0.2";

src = fetchurl {
url = "mirror://sourceforge/sidplay-residfp/sidplayfp/1.4/${pname}-${version}.tar.gz";
sha256 = "0arsrg3f0fsinal22qjmj3r6500bcbgqnx26fsz049ldl716kz1m";
url = "mirror://sourceforge/sidplay-residfp/sidplayfp/${majorMinor version}/${pname}-${version}.tar.gz";
sha256 = "1s2dfs9z1hwarpfzawg11wax9nh0zcqx4cafwq7iysckyg4scz4k";
};

nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig ]
++ optional alsaSupport alsaLib
++ optional pulseSupport libpulseaudio;

buildInputs = [ libsidplayfp ];

meta = with stdenv.lib; {
meta = with lib; {
description = "A SID player using libsidplayfp";
homepage = "https://sourceforge.net/projects/sidplay-residfp/";
license = with licenses; [ gpl2Plus ];
Expand Down

0 comments on commit e60a22b

Please sign in to comment.