nixpkgs/pkgs/applications/editors/bonzomatic/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
961 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
, cmake, makeWrapper
, alsa-lib, fontconfig, mesa_glu, libXcursor, libXinerama, libXrandr, xorg
}:
2018-04-17 21:17:06 +00:00
stdenv.mkDerivation rec {
pname = "bonzomatic";
2023-06-23 09:32:42 +00:00
version = "2023-06-15";
2018-04-17 21:17:06 +00:00
src = fetchFromGitHub {
owner = "Gargaj";
repo = pname;
rev = version;
2023-06-23 09:32:42 +00:00
sha256 = "sha256-hwK3C+p1hRwnuY2/vBrA0QsJGIcJatqq+U5/hzVCXEg=";
2018-04-17 21:17:06 +00:00
};
nativeBuildInputs = [ cmake makeWrapper ];
buildInputs = [
alsa-lib fontconfig mesa_glu
libXcursor libXinerama libXrandr xorg.xinput xorg.libXi xorg.libXext
];
2018-04-17 21:17:06 +00:00
postFixup = ''
wrapProgram $out/bin/bonzomatic --prefix LD_LIBRARY_PATH : "${alsa-lib}/lib"
2018-04-17 21:17:06 +00:00
'';
meta = with lib; {
description = "Live shader coding tool and Shader Showdown workhorse";
homepage = "https://github.com/gargaj/bonzomatic";
license = licenses.unlicense;
2021-01-13 21:56:40 +00:00
maintainers = [ maintainers.ilian ];
platforms = [ "i686-linux" "x86_64-linux" ];
2023-11-27 01:17:53 +00:00
mainProgram = "bonzomatic";
2018-04-17 21:17:06 +00:00
};
}