depot/third_party/nixpkgs/pkgs/misc/emulators/emu2/default.nix
Default email 1ffc76754d Project import generated by Copybara.
GitOrigin-RevId: a5cc7d3197705f933d88e97c0c61849219ce76c1
2020-07-18 18:06:22 +02:00

23 lines
601 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "emu2";
version = "unstable-2020-06-04";
src = fetchFromGitHub {
owner = "dmsc";
repo = "emu2";
rev = "f9599d347aab07d9281400ec8b214aabd187fbcd";
sha256 = "0d8fb3wp477kfi0p4mmr69lxsbgb4gl9pqmm68g9ixzrfch837v4";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
homepage = "https://github.com/dmsc/emu2/";
description = "A simple text-mode x86 + DOS emulator";
platforms = platforms.linux;
maintainers = with maintainers; [ dramaturg ];
license = licenses.gpl2;
};
}