dadc7eb329
Whenever we create scripts that are installed to $out, we must use runtimeShell in order to get the shell that can be executed on the machine we create the package for. This is relevant for cross-compiling. The only use case for stdenv.shell are scripts that are executed as part of the build system. Usages in checkPhase are borderline however to decrease the likelyhood of people copying the wrong examples, I decided to use runtimeShell as well.
82 lines
2.0 KiB
Nix
82 lines
2.0 KiB
Nix
{ stdenv, writeScript, fetchFromGitHub
|
|
, libGL, libX11, libXext, python3, libXrandr, libXrender, libpulseaudio, libXcomposite
|
|
, enableGlfw ? false, glfw, runtimeShell }:
|
|
|
|
let
|
|
inherit (stdenv.lib) optional makeLibraryPath;
|
|
|
|
wrapperScript = writeScript "glava" ''
|
|
#!${runtimeShell}
|
|
case "$1" in
|
|
--copy-config)
|
|
# The binary would symlink it, which won't work in Nix because the
|
|
# garbage collector will eventually remove the original files after
|
|
# updates
|
|
echo "Nix wrapper: Copying glava config to ~/.config/glava"
|
|
cp -r --no-preserve=all @out@/etc/xdg/glava ~/.config/glava
|
|
;;
|
|
*)
|
|
exec @out@/bin/.glava-unwrapped "$@"
|
|
esac
|
|
'';
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "glava-${version}";
|
|
version = "1.5.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wacossusca34";
|
|
repo = "glava";
|
|
rev = "v${version}";
|
|
sha256 = "0mps82qw2mhxx8069jvqz1v8n4x7ybrrjv92ij6cms8xi1y8v0fm";
|
|
};
|
|
|
|
buildInputs = [
|
|
libX11
|
|
libXext
|
|
libXrandr
|
|
libXrender
|
|
libpulseaudio
|
|
libXcomposite
|
|
] ++ optional enableGlfw glfw;
|
|
|
|
nativeBuildInputs = [
|
|
python3
|
|
];
|
|
|
|
preConfigure = ''
|
|
export CFLAGS="-march=native"
|
|
'';
|
|
|
|
makeFlags = optional (!enableGlfw) "DISABLE_GLFW=1";
|
|
|
|
installFlags = [
|
|
"DESTDIR=$(out)"
|
|
];
|
|
|
|
fixupPhase = ''
|
|
mkdir -p $out/bin
|
|
mv $out/usr/bin/glava $out/bin/.glava-unwrapped
|
|
rm -rf $out/usr
|
|
|
|
patchelf \
|
|
--set-rpath "$(patchelf --print-rpath $out/bin/.glava-unwrapped):${makeLibraryPath [ libGL ]}" \
|
|
$out/bin/.glava-unwrapped
|
|
|
|
substitute ${wrapperScript} $out/bin/glava --subst-var out
|
|
chmod +x $out/bin/glava
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = ''
|
|
OpenGL audio spectrum visualizer
|
|
'';
|
|
homepage = https://github.com/wacossusca34/glava;
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [
|
|
eadwu
|
|
];
|
|
};
|
|
}
|