kodelife: 0.9.0.129 -> 0.9.8.143

This commit is contained in:
Pavol Rusnak 2021-04-27 19:35:10 +02:00
parent fc98e85759
commit c5e8b0486a
No known key found for this signature in database
GPG key ID: 91F3B339B9A02A3D

View file

@ -9,22 +9,20 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "kodelife"; pname = "kodelife";
version = "0.9.0.129"; version = "0.9.8.143";
suffix = { suffix = {
aarch64-linux = "linux-arm64"; aarch64-linux = "linux-arm64";
armv7l-linux = "linux-armhf"; armv7l-linux = "linux-armhf";
x86_64-darwin = "macos";
x86_64-linux = "linux-x86_64"; x86_64-linux = "linux-x86_64";
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
src = fetchzip { src = fetchzip {
url = "https://hexler.net/pub/${pname}/${pname}-${version}-${suffix}.zip"; url = "https://hexler.net/pub/${pname}/${pname}-${version}-${suffix}.zip";
sha256 = { sha256 = {
aarch64-linux = "0z2fqlf156348ha3zhv16kvqdx68fbwbzch2gzjm9x1na9n5k1ra"; aarch64-linux = "0ryjmpzpfqdqrvqpq851vvrjd8ld5g91gcigpv9rxp3z1b7qdand";
armv7l-linux = "1ppwgrmgl1j2ws9mhrscvvkamd69a6xw7x35df6d30cyj97r0mzy"; armv7l-linux = "08nlwn8ixndqil4m7j6c8gjxmwx8zi3in86arnwf13shk6cds5nb";
x86_64-darwin = "0f8vn6m3xzsiyxm2ka5wkbp63wvzrix6g1xrbpvcm3v2llmychkl"; x86_64-linux = "0kbz7pvh4i4a3pj1vzbzzslha825i888isvsigcqsqvipjr4798q";
x86_64-linux = "035c1nlw0nim057sz3axpkcgkafqbm6gpr8hwr097vlrqll6w3dv";
}.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
}; };
@ -35,8 +33,10 @@ stdenv.mkDerivation rec {
preferLocalBuild = true; preferLocalBuild = true;
installPhase = '' installPhase = ''
runHook preInstall
mkdir -p $out/bin mkdir -p $out/bin
mv KodeLife $out/bin mv KodeLife $out/bin
runHook postInstall
''; '';
preFixup = let preFixup = let
@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
libGLU libGL libGLU libGL
xorg.libX11 xorg.libX11
]; ];
in lib.optionalString (!stdenv.isDarwin) '' in ''
patchelf \ patchelf \
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "${libPath}" \ --set-rpath "${libPath}" \
@ -61,6 +61,6 @@ stdenv.mkDerivation rec {
description = "Real-time GPU shader editor"; description = "Real-time GPU shader editor";
license = licenses.unfree; license = licenses.unfree;
maintainers = with maintainers; [ prusnak ]; maintainers = with maintainers; [ prusnak ];
platforms = [ "aarch64-linux" "armv7l-linux" "x86_64-darwin" "x86_64-linux" ]; platforms = [ "aarch64-linux" "armv7l-linux" "x86_64-linux" ];
}; };
} }