about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/bonzomatic
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/editors/bonzomatic')
-rw-r--r--nixpkgs/pkgs/applications/editors/bonzomatic/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/editors/bonzomatic/default.nix b/nixpkgs/pkgs/applications/editors/bonzomatic/default.nix
new file mode 100644
index 000000000000..9ccd549693bb
--- /dev/null
+++ b/nixpkgs/pkgs/applications/editors/bonzomatic/default.nix
@@ -0,0 +1,34 @@
+{ lib, stdenv, fetchFromGitHub
+, cmake, makeWrapper
+, alsaLib, fontconfig, mesa_glu, libXcursor, libXinerama, libXrandr, xorg
+}:
+
+stdenv.mkDerivation rec {
+  pname = "bonzomatic";
+  version = "2021-03-07";
+
+  src = fetchFromGitHub {
+    owner = "Gargaj";
+    repo = pname;
+    rev = version;
+    sha256 = "0gbh7kj7irq2hyvlzjgbs9fcns9kamz7g5p6msv12iw75z9yi330";
+  };
+
+  nativeBuildInputs = [ cmake makeWrapper ];
+  buildInputs = [
+    alsaLib fontconfig mesa_glu
+    libXcursor libXinerama libXrandr xorg.xinput xorg.libXi xorg.libXext
+  ];
+
+  postFixup = ''
+    wrapProgram $out/bin/bonzomatic --prefix LD_LIBRARY_PATH : "${alsaLib}/lib"
+  '';
+
+  meta = with lib; {
+    description = "Live shader coding tool and Shader Showdown workhorse";
+    homepage = "https://github.com/gargaj/bonzomatic";
+    license = licenses.unlicense;
+    maintainers = [ maintainers.ilian ];
+    platforms = [ "i686-linux" "x86_64-linux" ];
+  };
+}