2018-07-01 11:36:57 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libsidplayfp }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-07-21 18:14:49 +01:00
|
|
|
version = "1.4.4";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "sidplayfp";
|
2018-07-01 11:36:57 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/sidplay-residfp/sidplayfp/1.4/${pname}-${version}.tar.gz";
|
2018-07-21 18:14:49 +01:00
|
|
|
sha256 = "0arsrg3f0fsinal22qjmj3r6500bcbgqnx26fsz049ldl716kz1m";
|
2018-07-01 11:36:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libsidplayfp ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A SID player using libsidplayfp";
|
|
|
|
homepage = https://sourceforge.net/projects/sidplay-residfp/;
|
|
|
|
license = with licenses; [ gpl2Plus ];
|
|
|
|
maintainers = with maintainers; [ dezgeg ];
|
|
|
|
platforms = with platforms; linux;
|
|
|
|
};
|
|
|
|
}
|