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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
760 B
Nix
Raw Normal View History

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