nixpkgs/pkgs/applications/emulators/emu2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
607 B
Nix
Raw Normal View History

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