Skip to content

Commit

Permalink
MozPhab: init at 0.1.74
Browse files Browse the repository at this point in the history
  • Loading branch information
raboof committed Apr 6, 2020
1 parent ae6bdcc commit 2b1a779
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/applications/misc/MozPhab/default.nix
@@ -0,0 +1,29 @@
{ lib, python3Packages, pkgs }:

python3Packages.buildPythonApplication rec {
pname = "MozPhab";
version = "0.1.74";

src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "1qbl54pvba15b2ic9lxsajakbk4gj1rjazzj4qbrh43ngllrhi7y";
};

propagatedBuildInputs = [
python3Packages.setuptools
pkgs.mercurial
];

meta = with lib; {
description = "Phabricator CLI from Mozilla to support submission of a series of commits";
longDescription = ''
MozPhab is a custom command-line tool, moz-phab, which communicates to
Phabricator’s API, providing several conveniences, including support for
submitting series of commits.
'';
homepage = "https://moz-conduit.readthedocs.io/en/latest/phabricator-user.html";
license = licenses.mpl20;
maintainers = [ maintainers.raboof ];
platforms = platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -4742,6 +4742,8 @@ in

motion = callPackage ../applications/video/motion { };

MozPhab = callPackage ../applications/misc/MozPhab { };

mtail = callPackage ../servers/monitoring/mtail {
inherit (darwin.apple_sdk.frameworks) Security;
};
Expand Down

0 comments on commit 2b1a779

Please sign in to comment.