nixpkgs/pkgs/applications/networking/cluster/fn-cli/default.nix

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

37 lines
655 B
Nix
Raw Normal View History

2020-07-11 12:10:48 +00:00
{ lib, buildGoModule, fetchFromGitHub, docker }:
buildGoModule rec {
pname = "fn";
2022-06-25 18:55:09 +00:00
version = "0.6.20";
2020-07-11 12:10:48 +00:00
src = fetchFromGitHub {
owner = "fnproject";
repo = "cli";
rev = version;
2022-06-25 18:55:09 +00:00
sha256 = "sha256-HeyWMzxSga6T2/BRVwrmgb3utjnVTJk3zhhcVfq8/Cc=";
2020-07-11 12:10:48 +00:00
};
vendorSha256 = null;
subPackages = ["."];
buildInputs = [
docker
];
preBuild = ''
export HOME=$TMPDIR
'';
postInstall = ''
mv $out/bin/cli $out/bin/fn
'';
meta = with lib; {
description = "Command-line tool for the fn project";
homepage = "https://fnproject.io";
license = licenses.asl20;
maintainers = [ maintainers.c4605 ];
};
}