tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
hatari: update from 1.6.2 to 1.8.0
Mateusz Kowalczyk
11 years ago
85eec744
fca55bc9
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
misc
emulators
hatari
default.nix
+4
-3
pkgs/misc/emulators/hatari/default.nix
···
1
1
{ stdenv, fetchurl, zlib, SDL, cmake }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
name = "hatari-1.6.2";
4
4
+
name = "hatari-1.8.0";
5
5
6
6
src = fetchurl {
7
7
-
url = "http://download.tuxfamily.org/hatari/1.6.2/${name}.tar.bz2";
8
8
-
sha256 = "0gqvfqqd0lg3hi261rwh6gi2b5kmza480kfzx43d4l49xcq09pi0";
7
7
+
url = "http://download.tuxfamily.org/hatari/1.8.0/${name}.tar.bz2";
8
8
+
sha256 = "1szznnndmbyc71751hir3dhybmbrx3rnxs6klgbv9qvqlmmlikvy";
9
9
};
10
10
11
11
# For pthread_cancel
···
18
18
description = "Atari ST/STE/TT/Falcon emulator";
19
19
license = stdenv.lib.licenses.gpl2Plus;
20
20
platforms = stdenv.lib.platforms.linux;
21
21
+
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
21
22
};
22
23
}