about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/virtualization/tinyemu/default.nix
blob: a8f113307251e6878ab9b7294a45e647017e2754 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 ];
  };
}