forked from mirrors/nixpkgs
fuse-emulator: init at 1.5.7
This commit is contained in:
parent
5fc4257de6
commit
42ac6c797b
29
pkgs/misc/emulators/fuse-emulator/default.nix
Normal file
29
pkgs/misc/emulators/fuse-emulator/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ lib, stdenv, fetchurl, perl, pkgconfig, wrapGAppsHook
|
||||
, SDL, bzip2, glib, gtk3, libgcrypt, libpng, libspectrum, libxml2, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fuse-emulator";
|
||||
version = "1.5.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/${pname}/fuse-${version}.tar.gz";
|
||||
sha256 = "0kaynjr28w42n3iha60mgr7nxm49w8j0v49plyrc7ka24qzmiqph";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ perl pkgconfig wrapGAppsHook ];
|
||||
|
||||
buildInputs = [ SDL bzip2 glib gtk3 libgcrypt libpng libspectrum libxml2 zlib ];
|
||||
|
||||
configureFlags = [ "--enable-desktop-integration" ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = http://fuse-emulator.sourceforge.net/;
|
||||
description = "ZX Spectrum emulator";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ orivej ];
|
||||
};
|
||||
}
|
|
@ -24518,6 +24518,8 @@ in
|
|||
|
||||
foomatic-filters = callPackage ../misc/drivers/foomatic-filters {};
|
||||
|
||||
fuse-emulator = callPackage ../misc/emulators/fuse-emulator {};
|
||||
|
||||
gajim = callPackage ../applications/networking/instant-messengers/gajim {
|
||||
inherit (gst_all_1) gstreamer gst-plugins-base gst-libav gst-plugins-ugly;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue