mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 16:34:27 +00:00
72 lines
1.6 KiB
Nix
72 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, btrfs-progs
|
|
, glibc
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "werf";
|
|
version = "1.2.114";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "werf";
|
|
repo = "werf";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-+QCKVXuROd7QB6P5tSSINWtdw5OvVnmE1+ttoBnCO1g=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-VuburDiYqePFvS7/aTM+krkK2UhTHhfbvGOLY3I3DN8=";
|
|
|
|
proxyVendor = true;
|
|
|
|
subPackages = [ "cmd/werf" ];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
buildInputs = lib.optionals stdenv.isLinux [ btrfs-progs glibc.static ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/werf/werf/pkg/werf.Version=${src.rev}"
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
"-extldflags=-static"
|
|
"-linkmode external"
|
|
];
|
|
|
|
tags = [
|
|
"containers_image_openpgp"
|
|
"dfrunmount"
|
|
"dfssh"
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
"exclude_graphdriver_devicemapper"
|
|
"netgo"
|
|
"no_devmapper"
|
|
"osusergo"
|
|
"static_build"
|
|
];
|
|
|
|
# There are no tests for cmd/werf.
|
|
doCheck = false;
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd werf \
|
|
--bash <($out/bin/werf completion --shell=bash) \
|
|
--zsh <($out/bin/werf completion --shell=zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "GitOps delivery tool";
|
|
longDescription = ''
|
|
The CLI tool gluing Git, Docker, Helm & Kubernetes with any CI system to
|
|
implement CI/CD and Giterminism.
|
|
'';
|
|
homepage = "https://werf.io";
|
|
changelog = "https://github.com/werf/werf/releases/tag/${src.rev}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ azahi ];
|
|
};
|
|
}
|