mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
f8c4a98e8e
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
29 lines
697 B
Nix
29 lines
697 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
php,
|
|
}:
|
|
|
|
php.buildComposerProject (finalAttrs: {
|
|
pname = "phive";
|
|
version = "0.15.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phar-io";
|
|
repo = "phive";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-K/YZOGANcefjfdFY1XYEQknm0bPRorlRnNGC7dEegZ0=";
|
|
};
|
|
|
|
vendorHash = "sha256-0fJ+SyicvVONJ4FkOFTkBTekDAOjBfaLo0dZ2DYlGJU=";
|
|
|
|
meta = {
|
|
changelog = "https://github.com/phar-io/phive/releases/tag/${finalAttrs.version}";
|
|
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;
|
|
};
|
|
})
|