6c7e93c54a
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/sidplayfp/versions.
23 lines
658 B
Nix
23 lines
658 B
Nix
{ stdenv, fetchurl, pkgconfig, libsidplayfp }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.4.4";
|
|
name = "sidplayfp-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/sidplay-residfp/sidplayfp/1.4/${name}.tar.gz";
|
|
sha256 = "0arsrg3f0fsinal22qjmj3r6500bcbgqnx26fsz049ldl716kz1m";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|