mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
798fb575c2
Semi-automatic update. These checks were performed: - built on NixOS - found 1.6.0 with grep in /nix/store/az4qq1mvxnr766djymjci1vv6rlz97k7-phraseapp-client-1.6.0-bin - found 1.6.0 in filename of file in /nix/store/az4qq1mvxnr766djymjci1vv6rlz97k7-phraseapp-client-1.6.0-bin cc "@manveru @ehmry @lethalman"
25 lines
627 B
Nix
25 lines
627 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "phraseapp-client-${version}";
|
|
version = "1.6.0";
|
|
|
|
goPackagePath = "github.com/phrase/phraseapp-client";
|
|
subPackages = [ "." ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phrase";
|
|
repo = "phraseapp-client";
|
|
rev = version;
|
|
sha256 = "0rgwl0rgkci045hg36s0q8jwkni1hzapqpi0mc0gk3rl7nagw622";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|