mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Added UAE: Ultimate Amiga Emulator
svn path=/nixpkgs/trunk/; revision=27541
This commit is contained in:
parent
1229dd1400
commit
b2548922bf
11
pkgs/misc/emulators/uae/default.nix
Normal file
11
pkgs/misc/emulators/uae/default.nix
Normal file
@ -0,0 +1,11 @@
|
||||
{stdenv, fetchurl, pkgconfig, gtk, alsaLib, SDL}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "uae-0.8.29";
|
||||
src = fetchurl {
|
||||
url = http://www.amigaemulator.org/files/sources/develop/uae-0.8.29.tar.bz2;
|
||||
sha256 = "05s3cd1rd5a970s938qf4c2xm3l7f54g5iaqw56v8smk355m4qr4";
|
||||
};
|
||||
configureFlags = [ "--with-sdl" "--with-sdl-sound" "--with-sdl-gfx" "--with-alsa" ];
|
||||
buildInputs = [ pkgconfig gtk alsaLib SDL ];
|
||||
}
|
@ -7996,6 +7996,8 @@ let
|
||||
|
||||
psi = newScope pkgs.kde45 ../applications/networking/instant-messengers/psi { };
|
||||
|
||||
uae = callPackage ../misc/emulators/uae { };
|
||||
|
||||
putty = callPackage ../applications/networking/remote/putty { };
|
||||
|
||||
rssglx = callPackage ../misc/screensavers/rss-glx { };
|
||||
|
Loading…
Reference in New Issue
Block a user