83627f9931
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
29 lines
798 B
Nix
29 lines
798 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "phrase-cli";
|
|
version = "2.28.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phrase";
|
|
repo = "phrase-cli";
|
|
rev = version;
|
|
sha256 = "sha256-pGh1OorNF2fe5rKkszQc2PadrrN/Kpx0+7E5fJERYpQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-lXgTi6hYDBK1QGw8RQoNIHIlmyHPM6z8RYAmbW7N42s=";
|
|
|
|
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";
|
|
changelog = "https://github.com/phrase/phrase-cli/blob/${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ juboba ];
|
|
};
|
|
}
|