mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
29 lines
615 B
Nix
29 lines
615 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "railway";
|
|
version = "2.0.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "railwayapp";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-g/QBsWWVjhmn5slNav7j+vrzwf/0mMAERJaDLRrbxGI=";
|
|
};
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
vendorSha256 = "sha256-nLuomuAScodgLUKzMTiygtFBnNHrqAojOySZgKLVGJY=";
|
|
|
|
postInstall = ''
|
|
mv $out/bin/cli $out/bin/railway
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Railway CLI";
|
|
homepage = "https://railway.app";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ Crafter ];
|
|
};
|
|
}
|