Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

fuse-emulator: init at 1.5.7

+31
+29
pkgs/misc/emulators/fuse-emulator/default.nix
··· 1 + { lib, stdenv, fetchurl, perl, pkgconfig, wrapGAppsHook 2 + , SDL, bzip2, glib, gtk3, libgcrypt, libpng, libspectrum, libxml2, zlib 3 + }: 4 + 5 + stdenv.mkDerivation rec { 6 + pname = "fuse-emulator"; 7 + version = "1.5.7"; 8 + 9 + src = fetchurl { 10 + url = "mirror://sourceforge/${pname}/fuse-${version}.tar.gz"; 11 + sha256 = "0kaynjr28w42n3iha60mgr7nxm49w8j0v49plyrc7ka24qzmiqph"; 12 + }; 13 + 14 + nativeBuildInputs = [ perl pkgconfig wrapGAppsHook ]; 15 + 16 + buildInputs = [ SDL bzip2 glib gtk3 libgcrypt libpng libspectrum libxml2 zlib ]; 17 + 18 + configureFlags = [ "--enable-desktop-integration" ]; 19 + 20 + enableParallelBuilding = true; 21 + 22 + meta = with lib; { 23 + homepage = http://fuse-emulator.sourceforge.net/; 24 + description = "ZX Spectrum emulator"; 25 + license = licenses.gpl2Plus; 26 + platforms = platforms.linux; 27 + maintainers = with maintainers; [ orivej ]; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 24518 24518 24519 24519 foomatic-filters = callPackage ../misc/drivers/foomatic-filters {}; 24520 24520 24521 + fuse-emulator = callPackage ../misc/emulators/fuse-emulator {}; 24522 + 24521 24523 gajim = callPackage ../applications/networking/instant-messengers/gajim { 24522 24524 inherit (gst_all_1) gstreamer gst-plugins-base gst-libav gst-plugins-ugly; 24523 24525 };