70 lines
1.3 KiB
Nix
70 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 ];
|
|
};
|
|
}
|