overlay: remve fix for 194589

This commit is contained in:
Aaron Bieber 2022-10-08 06:05:15 -06:00
parent 80509317a5
commit 5e2e0a2679
No known key found for this signature in database

View File

@ -13,30 +13,8 @@ let
};
in {
nixpkgs.overlays = if isUnstable then [
openssh
# https://github.com/NixOS/nixpkgs/pull/194589
(self: super: {
tidal-hifi = super.tidal-hifi.overrideAttrs (old: {
postFixup = ''
makeWrapper $out/opt/tidal-hifi/tidal-hifi $out/bin/tidal-hifi \
--prefix LD_LIBRARY_PATH : "${
lib.makeLibraryPath super.tidal-hifi.buildInputs
}" \
"''${gappsWrapperArgs[@]}"
substituteInPlace $out/share/applications/tidal-hifi.desktop \
--replace "/opt/tidal-hifi/tidal-hifi" "tidal-hifi" \
--replace "/usr/share/icons/hicolor/0x0/apps/tidal-hifi.png" "tidal-hifi.png"
for size in 48 64 128 256 512; do
mkdir -p $out/share/icons/hicolor/''${size}x''${size}/apps/
convert $out/share/icons/hicolor/0x0/apps/tidal-hifi.png \
-resize ''${size}x''${size} $out/share/icons/hicolor/''${size}x''${size}/apps/tidal-hifi.png
done
'';
});
})
(self: super: {
zig = super.zig.overrideAttrs (old: {
version = "0.10.0-dev.35e0ff7";