depot/third_party/nixpkgs/pkgs/applications/emulators/emu2/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

27 lines
631 B
Nix

{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "emu2";
version = "0.pre+unstable=2021-09-22";
src = fetchFromGitHub {
owner = "dmsc";
repo = "emu2";
rev = "8d01b53f154d6bfc9561a44b9c281b46e00a4e87";
hash = "sha256-Jafl0Pw2k5RCF9GgpdAWcQ+HBTsiX7dOKSMCWPHQ+2E=";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
homepage = "https://github.com/dmsc/emu2/";
description = "Simple text-mode x86 + DOS emulator";
platforms = platforms.linux;
maintainers = with maintainers; [ AndersonTorres ];
license = licenses.gpl2Plus;
mainProgram = "emu2";
};
}