git-annex-metadata-gui: init at 0.2.0

This commit is contained in:
Robert Schütz 2017-12-08 01:12:47 +01:00
parent 90bcfc78c3
commit f715464b25
2 changed files with 31 additions and 0 deletions

View File

@ -51,6 +51,10 @@ rec {
git-annex = pkgs.haskellPackages.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-rclone = callPackage ./git-annex-remote-rclone { };

View File

@ -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;
};
}