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.
41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, unstableGitUpdater
|
|
}:
|
|
|
|
buildGoModule {
|
|
pname = "packwiz";
|
|
version = "0-unstable-2024-05-27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "packwiz";
|
|
repo = "packwiz";
|
|
rev = "7b4be47578151c36e784306b36d251ec2590e50c";
|
|
sha256 = "sha256-XBp8Xv55R8rhhsQiWnOPH8c3fCpV/yq41ozJDcGdWfs=";
|
|
};
|
|
passthru.updateScript = unstableGitUpdater { };
|
|
|
|
vendorHash = "sha256-yL5pWbVqf6mEpgYsItLnv8nwSmoMP+SE0rX/s7u2vCg=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd packwiz \
|
|
--bash <($out/bin/packwiz completion bash) \
|
|
--fish <($out/bin/packwiz completion fish) \
|
|
--zsh <($out/bin/packwiz completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Command line tool for editing and distributing Minecraft modpacks, using a git-friendly TOML format";
|
|
homepage = "https://packwiz.infra.link/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ infinidoge ];
|
|
mainProgram = "packwiz";
|
|
};
|
|
}
|