uae: use archive.org links

The original homepage is long gone (as is the tarball it hosted).
This commit is contained in:
Tobias Geerinckx-Rice 2015-05-19 02:15:40 +02:00
parent 622bd2e15f
commit d01927269e

View file

@ -1,9 +1,9 @@
{stdenv, fetchurl, pkgconfig, gtk, alsaLib, SDL}:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
name = "uae-0.8.29";
src = fetchurl {
url = http://www.amigaemulator.org/files/sources/develop/uae-0.8.29.tar.bz2;
url = "http://web.archive.org/web/20130905032631/http://www.amigaemulator.org/files/sources/develop/${name}.tar.bz2";
sha256 = "05s3cd1rd5a970s938qf4c2xm3l7f54g5iaqw56v8smk355m4qr4";
};
configureFlags = [ "--with-sdl" "--with-sdl-sound" "--with-sdl-gfx" "--with-alsa" ];
@ -12,7 +12,7 @@ stdenv.mkDerivation {
meta = {
description = "Ultimate/Unix/Unusable Amiga Emulator";
license = stdenv.lib.licenses.gpl2Plus;
homepage = http://www.amigaemulator.org;
homepage = http://web.archive.org/web/20130901222855/http://www.amigaemulator.org/;
maintainers = [ stdenv.lib.maintainers.sander ];
};
}