bonzomatic: init at 2018-03-29
This commit is contained in:
parent
ddaea6ac77
commit
4959111f30
@ -2650,6 +2650,11 @@
|
||||
github = "nmattia";
|
||||
name = "Nicolas Mattia";
|
||||
};
|
||||
nocent = {
|
||||
email = "nocent@protonmail.ch";
|
||||
github = "nocent";
|
||||
name = "nocent";
|
||||
};
|
||||
nocoolnametom = {
|
||||
email = "nocoolnametom@gmail.com";
|
||||
github = "nocoolnametom";
|
||||
|
31
pkgs/applications/editors/bonzomatic/default.nix
Normal file
31
pkgs/applications/editors/bonzomatic/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ stdenv, makeWrapper, fetchFromGitHub, cmake, alsaLib, mesa_glu, libXcursor, libXinerama, libXrandr, xorgserver }:
|
||||
|
||||
let
|
||||
name = "bonzomatic";
|
||||
in stdenv.mkDerivation {
|
||||
inherit name;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
repo = name;
|
||||
owner = "Gargaj";
|
||||
rev = "2018-03-29";
|
||||
sha256 = "12mdfjvbhdqz1585772rj4cap8m4ijfci6ib62jysxjf747k41fg";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake makeWrapper alsaLib mesa_glu libXcursor libXinerama libXrandr xorgserver ];
|
||||
|
||||
postFixup = ''
|
||||
wrapProgram $out/bin/Bonzomatic --prefix LD_LIBRARY_PATH : "${alsaLib}/lib"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A live-coding tool for writing 2D fragment/pixel shaders";
|
||||
license = with licenses; [
|
||||
unlicense
|
||||
unfreeRedistributable # contains libbass.so in repository
|
||||
];
|
||||
maintainers = [ maintainers.nocent ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -14943,6 +14943,8 @@ with pkgs;
|
||||
ffmpeg = ffmpeg_2;
|
||||
};
|
||||
|
||||
bonzomatic = callPackage ../applications/editors/bonzomatic { };
|
||||
|
||||
brackets = callPackage ../applications/editors/brackets { gconf = gnome3.gconf; };
|
||||
|
||||
notmuch-bower = callPackage ../applications/networking/mailreaders/notmuch-bower { };
|
||||
|
Loading…
Reference in New Issue
Block a user