summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/emulators/wibo
diff options
context:
space:
mode:
authorRyan Burns <rtburns@protonmail.com>2022-07-05 19:21:49 -0700
committerRyan Burns <rtburns@protonmail.com>2022-07-12 01:24:10 -0700
commit447e562f815e8c89c3fb1824a3316dc9058cf0ea (patch)
treec78bd7cdca64a535ff454a2a61a539bd0b07d2c9 /pkgs/applications/emulators/wibo
parenta27f1085d7d2312fa4eec0b160d8565d06d88f61 (diff)
wibo: init at 0.2.0
Diffstat (limited to 'pkgs/applications/emulators/wibo')
-rw-r--r--pkgs/applications/emulators/wibo/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/emulators/wibo/default.nix b/pkgs/applications/emulators/wibo/default.nix
new file mode 100644
index 000000000000..7a0d4e5f096d
--- /dev/null
+++ b/pkgs/applications/emulators/wibo/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+}:
+
+stdenv.mkDerivation rec {
+ pname = "wibo";
+ version = "0.2.0";
+
+ src = fetchFromGitHub {
+ owner = "decompals";
+ repo = "WiBo";
+ rev = version;
+ sha256 = "sha256-zv+FiordPo7aho3RJqDEe/1sJtjVt6Vy665VeNul/Kw=";
+ };
+
+ nativeBuildInputs = [
+ cmake
+ ];
+
+ meta = with lib; {
+ description = "Quick-and-dirty wrapper to run 32-bit windows EXEs on linux";
+ longDescription = ''
+ A minimal, low-fuss wrapper that can run really simple command-line
+ 32-bit Windows binaries on Linux - with less faff and less dependencies
+ than WINE.
+ '';
+ homepage = "https://github.com/decompals/WiBo";
+ license = licenses.mit;
+ maintainers = with maintainers; [ r-burns ];
+ platforms = [ "i686-linux" ];
+ };
+}