libspectrum: init at 1.4.4
This commit is contained in:
parent
444256039c
commit
5fc4257de6
24
pkgs/development/libraries/libspectrum/default.nix
Normal file
24
pkgs/development/libraries/libspectrum/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, stdenv, fetchurl, perl, pkgconfig, audiofile, bzip2, glib, libgcrypt, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libspectrum-1.4.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/fuse-emulator/${name}.tar.gz";
|
||||
sha256 = "1cc0jx617sym6qj1f9fm115q44cq5azsxplqq2cgrg0pmlmjpyzx";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ perl pkgconfig ];
|
||||
|
||||
buildInputs = [ audiofile bzip2 glib libgcrypt zlib ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = http://fuse-emulator.sourceforge.net/libspectrum.php;
|
||||
description = "ZX Spectrum input and output support library";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ orivej ];
|
||||
};
|
||||
}
|
@ -12827,6 +12827,8 @@ in
|
||||
|
||||
libsoup = callPackage ../development/libraries/libsoup { };
|
||||
|
||||
libspectrum = callPackage ../development/libraries/libspectrum { };
|
||||
|
||||
libspiro = callPackage ../development/libraries/libspiro {};
|
||||
|
||||
libssh = callPackage ../development/libraries/libssh { };
|
||||
|
Loading…
Reference in New Issue
Block a user