0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
28 lines
712 B
Nix
28 lines
712 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "phrase-cli";
|
|
version = "2.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phrase";
|
|
repo = "phrase-cli";
|
|
rev = version;
|
|
sha256 = "sha256-jByxNjz0KwcikOIpyxpswRbH4PFPu7mi9wERLHchPrI=";
|
|
};
|
|
|
|
vendorHash = "sha256-LlMBV52CG1uYW7I/e0VwoIIr0wk3ysc5gqrAlFRPsvE=";
|
|
|
|
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 ];
|
|
};
|
|
}
|