mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
34 lines
949 B
Nix
34 lines
949 B
Nix
{ lib, buildPythonApplication, fetchFromGitHub, pyqt5, qt5, git-annex-adapter }:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "git-annex-metadata-gui";
|
|
version = "0.2.0";
|
|
|
|
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 ];
|
|
license = licenses.gpl3Plus;
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|