nixpkgs/pkgs/tools/misc/phrase-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
714 B
Nix
Raw Normal View History

2022-02-11 07:33:01 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "phrase-cli";
2022-09-30 20:12:28 +00:00
version = "2.5.2";
2022-02-11 07:33:01 +00:00
src = fetchFromGitHub {
owner = "phrase";
repo = "phrase-cli";
rev = version;
2022-09-30 20:12:28 +00:00
sha256 = "sha256-VE9HsNZJ6bPgqhWUpxf5/dC6giGaK3H9bawSs0S2SJ8=";
2022-02-11 07:33:01 +00:00
};
2022-09-30 20:12:28 +00:00
vendorSha256 = "sha256-1TXDGs3ByBX8UQWoiT7hFZpwbwFlDhHHU03zw4+Zml0=";
2022-06-05 09:30:33 +00:00
ldflags = [ "-X=github.com/phrase/phrase-cli/cmd.PHRASE_CLIENT_VERSION=${version}" ];
2022-02-11 07:33:01 +00:00
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 ];
};
}