Merge pull request #328135 from uninsane/pr-syshud-2024-07-16

syshud: 0-unstable-2024-07-08 -> 0-unstable-2024-07-16
This commit is contained in:
Peder Bergebakken Sundt 2024-07-21 01:46:12 +02:00 committed by GitHub
commit a0442abd68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,13 +12,13 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "syshud"; pname = "syshud";
version = "0-unstable-2024-07-08"; version = "0-unstable-2024-07-16";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "System64fumo"; owner = "System64fumo";
repo = "syshud"; repo = "syshud";
rev = "602d3b3062dfe589a00b0debd07c3aaae9b98390"; rev = "d60c3bb6c8eefba743478fe7c183055fa057e69e";
hash = "sha256-rEigWAkzR5ZclsLg/rFMBM0AuSOCVr2/lsPtKk46FYo="; hash = "sha256-2aVqCXUZYGtv6xIqbZ1yk3SZK45igZVgPl0byxTXu8E=";
}; };
postPatch = '' postPatch = ''
@ -51,6 +51,11 @@ stdenv.mkDerivation (finalAttrs: {
runHook postConfigure runHook postConfigure
''; '';
# syshud manually `dlopen`'s its library component
postInstall = ''
wrapProgram $out/bin/syshud --prefix LD_LIBRARY_PATH : $out/lib
'';
passthru.updateScript = nix-update-script { passthru.updateScript = nix-update-script {
extraArgs = [ "--version" "branch" ]; extraArgs = [ "--version" "branch" ];
}; };