biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / emulators / darcnes / default.nix
blob7919e0a9009c3a738bcad79acce785b827ef5076
1 { lib, stdenv, fetchurl, libX11, libXt, libXext, libXaw }:
3 stdenv.mkDerivation rec {
4   pname = "darcnes";
5   version = "9b0401";
7   src = fetchurl {
8     url = "https://web.archive.org/web/20130511081532/http://www.dridus.com/~nyef/darcnes/download/dn${version}.tgz";
9     sha256 = "05a7mh51rg7ydb414m3p5mm05p4nz2bgvspqzwm3bhbj7zz543k3";
10   };
12   patches = [ ./label.patch ];
14   buildInputs = [ libX11 libXt libXext libXaw ];
15   installPhase = "install -Dt $out/bin darcnes";
17   meta = {
18     homepage = "https://web.archive.org/web/20130502171725/http://www.dridus.com/~nyef/darcnes/";
19     description = "Sega Master System, Game Gear, SG-1000, NES, ColecoVision and Apple II emulator";
20     # Prohibited commercial use, credit required.
21     license = lib.licenses.free;
22     platforms = [ "i686-linux" ];
23   };