nixpkgs/pkgs/applications/networking/cluster/kompose/default.nix

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

49 lines
1.3 KiB
Nix
Raw Normal View History

2022-11-11 09:47:11 +00:00
{ lib, buildGoModule, fetchFromGitHub, fetchpatch, installShellFiles, testers, kompose, git }:
2017-11-25 14:24:52 +00:00
2022-04-04 14:35:00 +00:00
buildGoModule rec {
pname = "kompose";
2022-04-04 14:35:00 +00:00
version = "1.26.1";
2017-11-25 14:24:52 +00:00
src = fetchFromGitHub {
owner = "kubernetes";
repo = "kompose";
2022-04-04 14:35:00 +00:00
rev = "v${version}";
sha256 = "sha256-NfzqGG5ZwPpmjhvcvXN1AA+kfZG/oujbAEtXkm1mzeU=";
2017-11-25 14:24:52 +00:00
};
2022-11-11 09:47:11 +00:00
vendorHash = "sha256-/i4R50heqf0v2F2GTZCKGq10+xKKr+zPkqWKa+afue8=";
patches = [
(fetchpatch {
url = "https://github.com/kubernetes/kompose/commit/0964a7ccd16504b6e5ef49a07978c87cca803d46.patch";
hash = "sha256-NMHLxx7Ae6Z+pacj538ivxIby7rNz3IbfDPbeLA0sMc=";
})
];
2022-04-04 14:35:00 +00:00
nativeBuildInputs = [ installShellFiles git ];
2022-04-04 14:35:00 +00:00
ldflags = [ "-s" "-w" ];
checkFlags = [ "-short" ];
postInstall = ''
2020-04-26 03:16:51 +00:00
for shell in bash zsh; do
$out/bin/kompose completion $shell > kompose.$shell
2020-04-26 03:16:51 +00:00
installShellCompletion kompose.$shell
done
'';
2022-04-26 07:58:49 +00:00
passthru.tests.version = testers.testVersion {
2022-04-04 14:35:00 +00:00
package = kompose;
command = "kompose version";
};
meta = with lib; {
2017-11-25 14:24:52 +00:00
description = "A tool to help users who are familiar with docker-compose move to Kubernetes";
homepage = "https://kompose.io";
2017-11-25 14:24:52 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ thpham vdemeester ];
2017-11-25 14:24:52 +00:00
platforms = platforms.unix;
};
}