mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Add hatari Atari St emulator.
This commit is contained in:
parent
81b78fe31a
commit
019472eaa3
19
pkgs/misc/emulators/hatari/default.nix
Normal file
19
pkgs/misc/emulators/hatari/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{stdenv, fetchurl, zlib, SDL, cmake}:
|
||||
|
||||
let
|
||||
name = "hatari-1.6.2";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit name;
|
||||
src = fetchurl {
|
||||
url = "http://download.tuxfamily.org/hatari/1.6.2/${name}.tar.bz2";
|
||||
sha256 = "0gqvfqqd0lg3hi261rwh6gi2b5kmza480kfzx43d4l49xcq09pi0";
|
||||
};
|
||||
buildInputs = [zlib SDL cmake];
|
||||
meta = {
|
||||
homepage = "http://hatari.tuxfamily.org/";
|
||||
description = "Hatari is an Atari ST/STE/TT/Falcon emulator.";
|
||||
license = "GPLv2+";
|
||||
platforms = with stdenv.lib.platforms; all;
|
||||
};
|
||||
}
|
@ -8959,6 +8959,8 @@ let
|
||||
|
||||
gxemul = callPackage ../misc/gxemul { };
|
||||
|
||||
hatari = callPackage ../misc/emulators/hatari { };
|
||||
|
||||
hplip = callPackage ../misc/drivers/hplip { };
|
||||
|
||||
# using the new configuration style proposal which is unstable
|
||||
|
Loading…
Reference in New Issue
Block a user