mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Merge pull request #47960 from jhhuh/tinyemu
tinyemu: init at 2018-09-23
This commit is contained in:
commit
6787357bc2
23
pkgs/applications/virtualization/tinyemu/default.nix
Normal file
23
pkgs/applications/virtualization/tinyemu/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl, openssl, curl, SDL }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "tinyemu-${version}";
|
||||
version = "2018-09-23";
|
||||
src = fetchurl {
|
||||
url = "https://bellard.org/tinyemu/${name}.tar.gz";
|
||||
sha256 = "0d6payyqf4lpvmmzvlpq1i8wpbg4sf3h6llsw0xnqdgq3m9dan4v";
|
||||
};
|
||||
buildInputs = [ openssl curl SDL ];
|
||||
makeFlags = [ "DESTDIR=$(out)" "bindir=/bin" ];
|
||||
preInstall = ''
|
||||
mkdir -p "$out/bin"
|
||||
'';
|
||||
meta = {
|
||||
homepage = https://bellard.org/tinyemu/;
|
||||
description = "A system emulator for the RISC-V and x86 architectures";
|
||||
longDescription = "TinyEMU is a system emulator for the RISC-V and x86 architectures. Its purpose is to be small and simple while being complete.";
|
||||
license = with stdenv.lib.licenses; [ mit bsd2 ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ jhhuh ];
|
||||
};
|
||||
}
|
@ -5604,6 +5604,8 @@ with pkgs;
|
||||
|
||||
tiny8086 = callPackage ../applications/virtualization/8086tiny { };
|
||||
|
||||
tinyemu = callPackage ../applications/virtualization/tinyemu { };
|
||||
|
||||
tinyproxy = callPackage ../tools/networking/tinyproxy {};
|
||||
|
||||
tio = callPackage ../tools/misc/tio { };
|
||||
|
Loading…
Reference in New Issue
Block a user