nixpkgs/pkgs/development/tools/symfony-cli/default.nix

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

25 lines
617 B
Nix
Raw Normal View History

2022-01-04 10:27:32 +00:00
{ buildGoModule, fetchFromGitHub, lib }:
2021-06-09 12:16:23 +00:00
2022-01-04 10:27:32 +00:00
buildGoModule rec {
pname = "symfony-cli";
2022-03-12 23:34:19 +00:00
version = "5.4.2";
2022-02-24 21:29:25 +00:00
vendorSha256 = "sha256-MlsgII1QybyW+B7DGbSyn7VQ36n29yOC0pZnaemEHO8=";
2022-01-04 10:27:32 +00:00
src = fetchFromGitHub {
owner = "symfony-cli";
repo = "symfony-cli";
rev = "v${version}";
2022-03-12 23:34:19 +00:00
sha256 = "sha256-Ci523YoocpCexbXMg3PjQ/x8z/STWt+nro64l+ckKzM=";
2022-01-04 10:27:32 +00:00
};
2022-01-04 10:27:32 +00:00
# Tests requires network access
doCheck = false;
2021-06-09 12:16:23 +00:00
meta = with lib; {
description = "Symfony CLI";
2022-01-04 10:27:32 +00:00
homepage = "https://github.com/symfony-cli/symfony-cli";
license = licenses.agpl3Plus;
2021-06-09 12:16:23 +00:00
maintainers = with maintainers; [ drupol ];
};
}