nixpkgs/pkgs/applications/graphics/kodelife/default.nix
R. RyanTM e07345793e kodelife: 0.8.3.93 -> 0.8.5.99
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/kodelife/versions
2019-10-07 04:53:39 -07:00

54 lines
1.1 KiB
Nix

{ stdenv
, fetchzip
, alsaLib
, glib
, gst_all_1
, libGLU_combined
, xorg
}:
stdenv.mkDerivation rec {
pname = "kodelife";
version = "0.8.5.99";
src = fetchzip {
url = "https://hexler.net/pub/${pname}/${pname}-${version}-linux-x86_64.zip";
sha256 = "189i2j6kaygjb5pccynxv4pwqpy67jf9nfi7fjfhbrmjpqnmkp90";
};
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_combined
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" ];
};
}