mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
Merge pull request #23996 from manveru/add-phraseapp
phraseapp-client: init at 1.4.3
This commit is contained in:
commit
39609e3157
24
pkgs/tools/misc/phraseapp-client/default.nix
Normal file
24
pkgs/tools/misc/phraseapp-client/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue