aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/audio/sidplayfp/default.nix
blob: b0a50bbf128e9080a32333aaadf5829ff17af89c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, pkgconfig, libsidplayfp }:

stdenv.mkDerivation rec {
  version = "1.4.4";
  pname = "sidplayfp";

  src = fetchurl {
    url = "mirror://sourceforge/sidplay-residfp/sidplayfp/1.4/${pname}-${version}.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;
  };
}