forked from mirrors/nixpkgs
Merge pull request #32428 from dotlambda/git-annex-metadata-gui
git-annex-metadata-gui: init at 0.2.0
This commit is contained in:
commit
6247e9b520
|
@ -51,6 +51,10 @@ rec {
|
||||||
git-annex = pkgs.haskellPackages.git-annex;
|
git-annex = pkgs.haskellPackages.git-annex;
|
||||||
gitAnnex = git-annex;
|
gitAnnex = git-annex;
|
||||||
|
|
||||||
|
git-annex-metadata-gui = libsForQt5.callPackage ./git-annex-metadata-gui {
|
||||||
|
inherit (python3Packages) buildPythonApplication pyqt5 git-annex-adapter;
|
||||||
|
};
|
||||||
|
|
||||||
git-annex-remote-b2 = callPackage ./git-annex-remote-b2 { };
|
git-annex-remote-b2 = callPackage ./git-annex-remote-b2 { };
|
||||||
|
|
||||||
git-annex-remote-rclone = callPackage ./git-annex-remote-rclone { };
|
git-annex-remote-rclone = callPackage ./git-annex-remote-rclone { };
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
{ stdenv, buildPythonApplication, fetchFromGitHub, pyqt5, git-annex-adapter }:
|
||||||
|
|
||||||
|
buildPythonApplication rec {
|
||||||
|
name = "git-annex-metadata-gui-${version}";
|
||||||
|
version = "0.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "alpernebbi";
|
||||||
|
repo = "git-annex-metadata-gui";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "03kch67k0q9lcs817906g864wwabkn208aiqvbiyqp1qbg99skam";
|
||||||
|
};
|
||||||
|
|
||||||
|
prePatch = ''
|
||||||
|
substituteInPlace setup.py --replace "'PyQt5', " ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pyqt5 git-annex-adapter ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/alpernebbi/git-annex-metadata-gui;
|
||||||
|
description = "Graphical interface for git-annex metadata commands";
|
||||||
|
maintainers = with maintainers; [ dotlambda ];
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
platforms = with platforms; linux;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue