nixpkgs/pkgs/applications/graphics/kodelife/default.nix
2019-11-30 08:57:28 +01:00

54 lines
1.1 KiB
Nix

{ stdenv
, fetchzip
, alsaLib
, glib
, gst_all_1
, libGLU, libGL
, xorg
}:
stdenv.mkDerivation rec {
pname = "kodelife";
version = "0.8.7.105";
src = fetchzip {
url = "https://hexler.net/pub/${pname}/${pname}-${version}-linux-x86_64.zip";
sha256 = "0ld4lwigzwlikx04qy3gskqqg0wzlk8m3ccrd704ifl8lsp46n5r";
};
dontConfigure = true;
dontBuild = true;
dontStrip = true;
dontPatchELF = true;
installPhase = ''
mkdir -p $out/bin
mv KodeLife $out/bin
'';
preFixup = let
libPath = stdenv.lib.makeLibraryPath [
stdenv.cc.cc.lib
alsaLib
glib
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
libGLU libGL
xorg.libX11
];
in ''
patchelf \
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "${libPath}" \
$out/bin/KodeLife
'';
meta = with stdenv.lib; {
homepage = "https://hexler.net/products/kodelife";
description = "Real-time GPU shader editor";
license = licenses.unfree;
maintainers = with maintainers; [ prusnak ];
platforms = [ "x86_64-linux" ];
};
}