2021-01-15 13:21:58 +00:00
|
|
|
{ lib, stdenv, fetchurl, libX11, libXt, libXext, libXaw }:
|
2011-03-25 22:15:48 +00:00
|
|
|
|
2017-09-27 16:06:34 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "darcnes";
|
2017-09-27 16:06:34 +01:00
|
|
|
version = "9b0401";
|
2011-03-25 22:15:48 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-09-27 16:06:34 +01:00
|
|
|
url = "https://web.archive.org/web/20130511081532/http://www.dridus.com/~nyef/darcnes/download/dn${version}.tgz";
|
2011-03-25 22:15:48 +00:00
|
|
|
sha256 = "05a7mh51rg7ydb414m3p5mm05p4nz2bgvspqzwm3bhbj7zz543k3";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./label.patch ];
|
|
|
|
|
2017-09-27 16:06:34 +01:00
|
|
|
buildInputs = [ libX11 libXt libXext libXaw ];
|
|
|
|
installPhase = "install -Dt $out/bin darcnes";
|
|
|
|
|
2011-03-25 22:15:48 +00:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://web.archive.org/web/20130502171725/http://www.dridus.com/~nyef/darcnes/";
|
2017-09-27 16:06:34 +01:00
|
|
|
description = "Sega Master System, Game Gear, SG-1000, NES, ColecoVision and Apple II emulator";
|
|
|
|
# Prohibited commercial use, credit required.
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.free;
|
2017-09-27 16:06:34 +01:00
|
|
|
platforms = [ "i686-linux" ];
|
2011-03-25 22:15:48 +00:00
|
|
|
};
|
|
|
|
}
|