nixpkgs/pkgs/development/libraries/libspectrum/default.nix

25 lines
715 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, perl, pkg-config, audiofile, bzip2, glib, libgcrypt, zlib }:
2019-12-08 12:23:51 +00:00
stdenv.mkDerivation rec {
2021-03-04 00:14:59 +00:00
name = "libspectrum-1.5.0";
2019-12-08 12:23:51 +00:00
src = fetchurl {
url = "mirror://sourceforge/fuse-emulator/${name}.tar.gz";
2021-03-04 00:14:59 +00:00
sha256 = "sha256-o1PLRumxooEGHYFjU+oBDQpv545qF6oLe3QnHKXkrPw=";
2019-12-08 12:23:51 +00:00
};
nativeBuildInputs = [ perl pkg-config ];
2019-12-08 12:23:51 +00:00
buildInputs = [ audiofile bzip2 glib libgcrypt zlib ];
enableParallelBuilding = true;
meta = with lib; {
homepage = "http://fuse-emulator.sourceforge.net/libspectrum.php";
2019-12-08 12:23:51 +00:00
description = "ZX Spectrum input and output support library";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ orivej ];
};
}