lol

Merge pull request #67067 from prusnak/kodelife

kodelife: init at 0.8.3.93

authored by

Marek Mahut and committed by
GitHub
03d34165 fd7fa0aa

+55
+53
pkgs/applications/graphics/kodelife/default.nix
··· 1 + { stdenv 2 + , fetchzip 3 + , alsaLib 4 + , glib 5 + , gst_all_1 6 + , libGLU_combined 7 + , xorg 8 + }: 9 + 10 + stdenv.mkDerivation rec { 11 + pname = "kodelife"; 12 + version = "0.8.3.93"; 13 + 14 + src = fetchzip { 15 + url = "https://hexler.net/pub/${pname}/${pname}-${version}-linux-x86_64.zip"; 16 + sha256 = "1gidh0745g5mc8h5ypm2wamv1paymnrq3nh3yx1j70jwjg8v2v7g"; 17 + }; 18 + 19 + dontConfigure = true; 20 + dontBuild = true; 21 + dontStrip = true; 22 + dontPatchELF = true; 23 + 24 + installPhase = '' 25 + mkdir -p $out/bin 26 + mv KodeLife $out/bin 27 + ''; 28 + 29 + preFixup = let 30 + libPath = stdenv.lib.makeLibraryPath [ 31 + stdenv.cc.cc.lib 32 + alsaLib 33 + glib 34 + gst_all_1.gstreamer 35 + gst_all_1.gst-plugins-base 36 + libGLU_combined 37 + xorg.libX11 38 + ]; 39 + in '' 40 + patchelf \ 41 + --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ 42 + --set-rpath "${libPath}" \ 43 + $out/bin/KodeLife 44 + ''; 45 + 46 + meta = with stdenv.lib; { 47 + homepage = "https://hexler.net/products/kodelife"; 48 + description = "Real-time GPU shader editor"; 49 + license = licenses.unfree; 50 + maintainers = with maintainers; [ prusnak ]; 51 + platforms = [ "x86_64-linux" ]; 52 + }; 53 + }
+2
pkgs/top-level/all-packages.nix
··· 24775 24775 runwayml = callPackage ../applications/graphics/runwayml {}; 24776 24776 24777 24777 uhubctl = callPackage ../tools/misc/uhubctl {}; 24778 + 24779 + kodelife = callPackage ../applications/graphics/kodelife {}; 24778 24780 }