commit 63629038e38f1d5653c52c0c458fc0f96983dbd7 parent a4d99c12ac68b20a17afb55473866ff94d19d5ec Author: Nikolay Korotkiy <sikmir@disroot.org> Date: Sat, 25 Apr 2026 13:27:55 +0400 Drop podman-desktop-bin Diffstat:
| D | pkgs/by-name/po/podman-desktop-bin/package.nix | | | 43 | ------------------------------------------- |
1 file changed, 0 insertions(+), 43 deletions(-)
diff --git a/pkgs/by-name/po/podman-desktop-bin/package.nix b/pkgs/by-name/po/podman-desktop-bin/package.nix @@ -1,43 +0,0 @@ -{ - lib, - stdenv, - fetchfromgh, - _7zz, -}: - -stdenv.mkDerivation (finalAttrs: { - pname = "podman-desktop"; - version = "1.15.0"; - - __structuredAttrs = true; - - src = fetchfromgh { - owner = "containers"; - repo = "podman-desktop"; - tag = "v${finalAttrs.version}"; - hash = "sha256-TS2232oa7lnDh4E3F3Z3y2IGX2Q/SRV/tWIlvgpBkEU="; - name = "podman-desktop-${finalAttrs.version}-x64.dmg"; - }; - - sourceRoot = "."; - - nativeBuildInputs = [ _7zz ]; - unpackCmd = "7zz x $curSrc"; - - installPhase = '' - runHook preInstall - mkdir -p $out/Applications - cp -R *.app $out/Applications - runHook postInstall - ''; - - meta = { - description = "A graphical tool for developing on containers and Kubernetes"; - homepage = "https://podman-desktop.io/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.asl20; - platforms = [ "x86_64-darwin" ]; - maintainers = [ lib.maintainers.sikmir ]; - skip.ci = true; - }; -})
