darcnes: use web.archive.org links, clean up
This commit is contained in:
parent
37464fd42a
commit
c93c7752e9
1 changed files with 14 additions and 18 deletions
|
@ -1,28 +1,24 @@
|
|||
{stdenv, fetchurl, libX11, libXt, libXext, libXaw }:
|
||||
{ stdenv, fetchurl, libX11, libXt, libXext, libXaw }:
|
||||
|
||||
assert stdenv.system == "i686-linux";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "darcnes-${version}";
|
||||
version = "9b0401";
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "darcnes-9b0401";
|
||||
src = fetchurl {
|
||||
url = http://www.dridus.com/~nyef/darcnes/download/dn9b0401.tgz;
|
||||
url = "https://web.archive.org/web/20130511081532/http://www.dridus.com/~nyef/darcnes/download/dn${version}.tgz";
|
||||
sha256 = "05a7mh51rg7ydb414m3p5mm05p4nz2bgvspqzwm3bhbj7zz543k3";
|
||||
};
|
||||
|
||||
buildInputs = [ libX11 libXt libXext libXaw ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp darcnes $out/bin
|
||||
'';
|
||||
|
||||
patches = [ ./label.patch ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.dridus.com/~nyef/darcnes/;
|
||||
description = "Multi-System emulator, specially for NES";
|
||||
/* Prohibited commercial use, credit required. */
|
||||
license = stdenv.lib.licenses.free;
|
||||
};
|
||||
buildInputs = [ libX11 libXt libXext libXaw ];
|
||||
installPhase = "install -Dt $out/bin darcnes";
|
||||
|
||||
meta = {
|
||||
homepage = https://web.archive.org/web/20130502171725/http://www.dridus.com/~nyef/darcnes/;
|
||||
description = "Sega Master System, Game Gear, SG-1000, NES, ColecoVision and Apple II emulator";
|
||||
# Prohibited commercial use, credit required.
|
||||
license = stdenv.lib.licenses.free;
|
||||
platforms = [ "i686-linux" ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue