mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
29 lines
712 B
Nix
29 lines
712 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "phrase-cli";
|
|
version = "2.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phrase";
|
|
repo = "phrase-cli";
|
|
rev = version;
|
|
sha256 = "sha256-jsN7JouIyrFd//+kDAcEEsXiGLZx8e5jQsiNVQuDiQg=";
|
|
};
|
|
|
|
vendorHash = "sha256-a0QA/1vUryAnO0Nr+m8frxtpnSHBOSOP1pq+BORTIJw=";
|
|
|
|
ldflags = [ "-X=github.com/phrase/phrase-cli/cmd.PHRASE_CLIENT_VERSION=${version}" ];
|
|
|
|
postInstall = ''
|
|
ln -s $out/bin/phrase-cli $out/bin/phrase
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://docs.phraseapp.com";
|
|
description = "PhraseApp API v2 Command Line Client";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ juboba ];
|
|
};
|
|
}
|