mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Merge pull request #91193 from dramaturg/emu2
emu2: init at unstable-2020-06-04
This commit is contained in:
commit
e932a72089
23
pkgs/misc/emulators/emu2/default.nix
Normal file
23
pkgs/misc/emulators/emu2/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -25736,6 +25736,8 @@ in
|
||||
|
||||
dosbox = callPackage ../misc/emulators/dosbox { };
|
||||
|
||||
emu2 = callPackage ../misc/emulators/emu2 { };
|
||||
|
||||
dpkg = callPackage ../tools/package-management/dpkg { };
|
||||
|
||||
dumb = callPackage ../misc/dumb { };
|
||||
|
Loading…
Reference in New Issue
Block a user