Unverified Commit 09d5435a authored by Tom Hunze's avatar Tom Hunze
Browse files

ggshield: fix `meta.changelog`, remove `with lib;`

parent a53ea415
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -81,12 +81,12 @@ python3.pkgs.buildPythonApplication rec {
    "test_get_file_sha_in_ref"
  ];

  meta = with lib; {
  meta = {
    description = "Tool to find and fix various types of hardcoded secrets and infrastructure-as-code misconfigurations";
    homepage = "https://github.com/GitGuardian/ggshield";
    changelog = "https://github.com/GitGuardian/ggshield/blob/${version}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
    changelog = "https://github.com/GitGuardian/ggshield/blob/${src.tag}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
    mainProgram = "ggshield";
  };
}