Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
29 lines
599 B
Nix
29 lines
599 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
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 = [ ];
|
|
license = licenses.gpl2Plus;
|
|
mainProgram = "emu2";
|
|
};
|
|
}
|