571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
30 lines
944 B
Nix
30 lines
944 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";
|
|
};
|
|
}
|