nixpkgs/pkgs/development/php-packages/phive/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
697 B
Nix
Raw Permalink Normal View History

{
lib,
fetchFromGitHub,
php,
}:
2022-03-13 10:33:30 +00:00
php.buildComposerProject (finalAttrs: {
2022-03-13 10:33:30 +00:00
pname = "phive";
2024-08-23 01:55:39 +00:00
version = "0.15.3";
2022-03-13 10:33:30 +00:00
src = fetchFromGitHub {
owner = "phar-io";
repo = "phive";
rev = finalAttrs.version;
2024-08-23 01:55:39 +00:00
hash = "sha256-6vNhmIDE3kwZGMrDnGNGVV6/lb32Yb3ooWDYOC7SUcs=";
2022-03-13 10:33:30 +00:00
};
2024-08-23 01:55:39 +00:00
vendorHash = "sha256-iBNH4n4AVE47CYmwO6s6WBAuRe7JzzvoNruYfVbxPck=";
2022-03-13 10:33:30 +00:00
meta = {
changelog = "https://github.com/phar-io/phive/releases/tag/${finalAttrs.version}";
2022-03-13 10:33:30 +00:00
description = "Phar Installation and Verification Environment (PHIVE)";
homepage = "https://github.com/phar-io/phive";
license = lib.licenses.bsd3;
mainProgram = "phive";
maintainers = lib.teams.php.members;
2022-03-13 10:33:30 +00:00
};
})