Unverified Commit 9540ebdc authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

treewide: sync gnome circle team packages with upstream (#395376)

parents cf18e0e8 57f72d3f
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -63,10 +63,13 @@ stdenv.mkDerivation (finalAttrs: {
    homepage = "https://github.com/bragefuglseth/keypunch";
    license = lib.licenses.gpl3Plus;
    mainProgram = "keypunch";
    maintainers = with lib.maintainers; [
    maintainers =
      with lib.maintainers;
      [
        tomasajt
        getchoo
    ];
      ]
      ++ lib.teams.gnome-circle.members;
    platforms = lib.platforms.linux;
  };
})
+6 −7
Original line number Diff line number Diff line
@@ -21,13 +21,12 @@
python3.pkgs.buildPythonApplication rec {
  pname = "metadata-cleaner";
  version = "2.5.6";

  format = "other";
  pyproject = false;

  src = fetchFromGitLab {
    owner = "rmnvgr";
    repo = "metadata-cleaner";
    rev = "v${version}";
    tag = "v${version}";
    hash = "sha256-J+nwgLbAFoh1gq3J4cqQEShZJCSZesyCjT9DfkCWIHs=";
  };

@@ -61,15 +60,15 @@ python3.pkgs.buildPythonApplication rec {
    updateScript = nix-update-script { };
  };

  meta = with lib; {
  meta = {
    description = "Python GTK application to view and clean metadata in files, using mat2";
    mainProgram = "metadata-cleaner";
    homepage = "https://gitlab.com/rmnvgr/metadata-cleaner";
    changelog = "https://gitlab.com/rmnvgr/metadata-cleaner/-/blob/${src.rev}/CHANGELOG.md";
    license = with licenses; [
    changelog = "https://gitlab.com/rmnvgr/metadata-cleaner/-/blob/v${version}/CHANGELOG.md";
    license = with lib.licenses; [
      gpl3Plus
      cc-by-sa-40
    ];
    maintainers = with maintainers; [ dotlambda ] ++ lib.teams.gnome-circle.members;
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}