From 5e2e0a26795aebad9c519e06dc78672c8bdacc08 Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Sat, 8 Oct 2022 06:05:15 -0600 Subject: [PATCH] overlay: remve fix for 194589 --- overlays/default.nix | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/overlays/default.nix b/overlays/default.nix index 328abbe..14ca0d9 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -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";