mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
67 lines
1.3 KiB
Nix
67 lines
1.3 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitLab
|
|
, appstream
|
|
, desktop-file-utils
|
|
, glib
|
|
, gobject-introspection
|
|
, gtk4
|
|
, itstool
|
|
, libadwaita
|
|
, librsvg
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, poppler_gi
|
|
, wrapGAppsHook4
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "metadata-cleaner";
|
|
version = "2.5.6";
|
|
|
|
format = "other";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "rmnvgr";
|
|
repo = "metadata-cleaner";
|
|
rev = "v${version}";
|
|
hash = "sha256-J+nwgLbAFoh1gq3J4cqQEShZJCSZesyCjT9DfkCWIHs=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
appstream
|
|
desktop-file-utils
|
|
glib # glib-compile-resources
|
|
gtk4 # gtk4-update-icon-cache
|
|
gobject-introspection
|
|
itstool
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk4
|
|
libadwaita
|
|
librsvg
|
|
poppler_gi
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
mat2
|
|
pygobject3
|
|
];
|
|
|
|
meta = with lib; {
|
|
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; [ gpl3Plus cc-by-sa-40 ];
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|