mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
35 lines
929 B
Nix
35 lines
929 B
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, cmake, makeWrapper
|
|
, alsa-lib, fontconfig, mesa_glu, libXcursor, libXinerama, libXrandr, xorg
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bonzomatic";
|
|
version = "2022-02-05";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Gargaj";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-y0zNluIDxms+Lpg7yBiEJNNyxx5TLaSiWBKXjqXiVJg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake makeWrapper ];
|
|
buildInputs = [
|
|
alsa-lib fontconfig mesa_glu
|
|
libXcursor libXinerama libXrandr xorg.xinput xorg.libXi xorg.libXext
|
|
];
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/bonzomatic --prefix LD_LIBRARY_PATH : "${alsa-lib}/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" ];
|
|
};
|
|
}
|