tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
fuse-emulator: init at 1.5.7
Orivej Desh
6 years ago
42ac6c79
5fc4257d
+31
2 changed files
expand all
collapse all
unified
split
pkgs
misc
emulators
fuse-emulator
default.nix
top-level
all-packages.nix
+29
pkgs/misc/emulators/fuse-emulator/default.nix
···
1
1
+
{ lib, stdenv, fetchurl, perl, pkgconfig, wrapGAppsHook
2
2
+
, SDL, bzip2, glib, gtk3, libgcrypt, libpng, libspectrum, libxml2, zlib
3
3
+
}:
4
4
+
5
5
+
stdenv.mkDerivation rec {
6
6
+
pname = "fuse-emulator";
7
7
+
version = "1.5.7";
8
8
+
9
9
+
src = fetchurl {
10
10
+
url = "mirror://sourceforge/${pname}/fuse-${version}.tar.gz";
11
11
+
sha256 = "0kaynjr28w42n3iha60mgr7nxm49w8j0v49plyrc7ka24qzmiqph";
12
12
+
};
13
13
+
14
14
+
nativeBuildInputs = [ perl pkgconfig wrapGAppsHook ];
15
15
+
16
16
+
buildInputs = [ SDL bzip2 glib gtk3 libgcrypt libpng libspectrum libxml2 zlib ];
17
17
+
18
18
+
configureFlags = [ "--enable-desktop-integration" ];
19
19
+
20
20
+
enableParallelBuilding = true;
21
21
+
22
22
+
meta = with lib; {
23
23
+
homepage = http://fuse-emulator.sourceforge.net/;
24
24
+
description = "ZX Spectrum emulator";
25
25
+
license = licenses.gpl2Plus;
26
26
+
platforms = platforms.linux;
27
27
+
maintainers = with maintainers; [ orivej ];
28
28
+
};
29
29
+
}
+2
pkgs/top-level/all-packages.nix
···
24518
24518
24519
24519
foomatic-filters = callPackage ../misc/drivers/foomatic-filters {};
24520
24520
24521
24521
+
fuse-emulator = callPackage ../misc/emulators/fuse-emulator {};
24522
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
};