nixpkgs/pkgs/misc/emulators/hatari/default.nix

26 lines
678 B
Nix
Raw Normal View History

2021-01-15 05:21:58 -08:00
{ lib, stdenv, fetchurl, zlib, SDL, cmake }:
2013-04-22 13:10:15 -07:00
stdenv.mkDerivation rec {
2020-12-02 10:43:46 -08:00
pname = "hatari";
version = "2.3.0";
2013-04-22 13:10:15 -07:00
src = fetchurl {
2020-12-02 10:43:46 -08:00
url = "https://download.tuxfamily.org/hatari/${version}/${pname}-${version}.tar.bz2";
2020-12-02 03:32:16 -08:00
sha256 = "19dqadi32hgi78hyxxcm8v2vh28vyn9w5nd1xiq683wk0ccicj5z";
2013-04-22 13:10:15 -07:00
};
# For pthread_cancel
cmakeFlags = [ "-DCMAKE_EXE_LINKER_FLAGS=-lgcc_s" ];
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib SDL ];
2013-04-22 13:10:15 -07:00
meta = {
homepage = "http://hatari.tuxfamily.org/";
description = "Atari ST/STE/TT/Falcon emulator";
2021-01-15 05:21:58 -08:00
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ ];
2013-04-22 13:10:15 -07:00
};
}