summary refs log tree commit diff
path: root/pkgs/applications/virtualization/tinyemu
diff options
context:
space:
mode:
authorJi-Haeng Huh <jhhuh.note@gmail.com>2018-10-06 17:03:22 +0900
committerJi-Haeng Huh <jhhuh.note@gmail.com>2018-10-06 18:53:10 +0000
commit3115f8dffb427f64c5ab12ed51cc173980a4a1c9 (patch)
tree8a53461d4e8bb034bdcdbe3aeaad54a2ba658c2b /pkgs/applications/virtualization/tinyemu
parentec7d7e1f78fd7bf4b0abd40bc87779ed36ce407f (diff)
downloadnixpkgs-3115f8dffb427f64c5ab12ed51cc173980a4a1c9.tar
nixpkgs-3115f8dffb427f64c5ab12ed51cc173980a4a1c9.tar.gz
nixpkgs-3115f8dffb427f64c5ab12ed51cc173980a4a1c9.tar.bz2
nixpkgs-3115f8dffb427f64c5ab12ed51cc173980a4a1c9.tar.lz
nixpkgs-3115f8dffb427f64c5ab12ed51cc173980a4a1c9.tar.xz
nixpkgs-3115f8dffb427f64c5ab12ed51cc173980a4a1c9.tar.zst
nixpkgs-3115f8dffb427f64c5ab12ed51cc173980a4a1c9.zip
tinyemu: init at 2018-09-23
Diffstat (limited to 'pkgs/applications/virtualization/tinyemu')
-rw-r--r--pkgs/applications/virtualization/tinyemu/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/virtualization/tinyemu/default.nix b/pkgs/applications/virtualization/tinyemu/default.nix
new file mode 100644
index 00000000000..a8f11330725
--- /dev/null
+++ b/pkgs/applications/virtualization/tinyemu/default.nix
@@ -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 ];
+  };
+}