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

35 lines
927 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
, cmake, makeWrapper
, alsaLib, fontconfig, mesa_glu, libXcursor, libXinerama, libXrandr, xorg
}:
2018-04-17 22:17:06 +01:00
stdenv.mkDerivation rec {
pname = "bonzomatic";
version = "2021-03-07";
2018-04-17 22:17:06 +01:00
src = fetchFromGitHub {
owner = "Gargaj";
repo = pname;
rev = version;
sha256 = "0gbh7kj7irq2hyvlzjgbs9fcns9kamz7g5p6msv12iw75z9yi330";
2018-04-17 22:17:06 +01:00
};
nativeBuildInputs = [ cmake makeWrapper ];
buildInputs = [
alsaLib fontconfig mesa_glu
libXcursor libXinerama libXrandr xorg.xinput xorg.libXi xorg.libXext
];
2018-04-17 22:17:06 +01:00
postFixup = ''
wrapProgram $out/bin/bonzomatic --prefix LD_LIBRARY_PATH : "${alsaLib}/lib"
2018-04-17 22:17:06 +01: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" ];
2018-04-17 22:17:06 +01:00
};
}