Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

34 lines
951 B
Nix

{
fetchzip,
lib,
stdenvNoCC,
}:
stdenvNoCC.mkDerivation rec {
pname = "swiftdefaultapps";
version = "2.0.1";
# Fetch the release which includes the prebuild binary since this is a Swift project and nixpkgs
# doesn't currently have the ability to build Swift projects.
src = fetchzip {
url = "https://github.com/Lord-Kamina/SwiftDefaultApps/releases/download/v${version}/SwiftDefaultApps-v${version}.zip";
stripRoot = false;
sha256 = "sha256-0HsHjZBPUzmdvHy7E9EdZj6zwaXjSX2u5aj8pij0u3E=";
};
installPhase = ''
runHook preInstall
install -D './swda' "$out/bin/swda"
runHook postInstall
'';
meta = with lib; {
description = "View and change the default application for url schemes and UTIs";
homepage = "https://github.com/Lord-Kamina/SwiftDefaultApps";
license = licenses.beerware;
maintainers = [ maintainers.malo ];
platforms = platforms.darwin;
mainProgram = "swda";
};
}