Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1.0 KiB
Nix
49 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
buildPythonApplication,
|
|
fetchFromGitHub,
|
|
pyqt5,
|
|
qt5,
|
|
git-annex-adapter,
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "git-annex-metadata-gui";
|
|
version = "0.2.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alpernebbi";
|
|
repo = "git-annex-metadata-gui";
|
|
rev = "v${version}";
|
|
sha256 = "03kch67k0q9lcs817906g864wwabkn208aiqvbiyqp1qbg99skam";
|
|
};
|
|
|
|
prePatch = ''
|
|
substituteInPlace setup.py --replace "'PyQt5', " ""
|
|
'';
|
|
|
|
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
pyqt5
|
|
git-annex-adapter
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/alpernebbi/git-annex-metadata-gui";
|
|
description = "Graphical interface for git-annex metadata commands";
|
|
mainProgram = "git-annex-metadata-gui";
|
|
maintainers = with maintainers; [
|
|
dotlambda
|
|
matthiasbeyer
|
|
];
|
|
license = licenses.gpl3Plus;
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|