Merge pull request #23996 from manveru/add-phraseapp

phraseapp-client: init at 1.4.3
This commit is contained in:
Michael Raskin 2017-03-18 20:08:45 +01:00 committed by GitHub
commit 39609e3157
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "phraseapp-client-${version}";
version = "1.4.3";
goPackagePath = "github.com/phrase/phraseapp-client";
subPackages = [ "." ];
src = fetchFromGitHub {
owner = "phrase";
repo = "phraseapp-client";
rev = version;
sha256 = "1nfab7y75vl0vg9vy8gc46h7wikk94nky1n415im1xbpsnqg77wz";
};
meta = with stdenv.lib; {
homepage = http://docs.phraseapp.com;
description = "PhraseApp API v2 Command Line Client";
platforms = platforms.all;
license = licenses.mit;
maintainers = with maintainers; [ manveru ];
};
}

View file

@ -14918,6 +14918,8 @@ with pkgs;
phrasendrescher = callPackage ../tools/security/phrasendrescher { };
phraseapp-client = callPackage ../tools/misc/phraseapp-client { };
phwmon = callPackage ../applications/misc/phwmon { };
pianobar = callPackage ../applications/audio/pianobar { };