nixpkgs/pkgs/development/tools/manifest-tool/default.nix

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

63 lines
1.2 KiB
Nix
Raw Normal View History

2023-01-23 07:52:02 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, git
, stdenv
, testers
, manifest-tool
}:
buildGoModule rec {
pname = "manifest-tool";
version = "2.1.5";
2023-01-23 07:52:02 +00:00
modRoot = "v2";
src = fetchFromGitHub {
owner = "estesp";
repo = "manifest-tool";
rev = "v${version}";
hash = "sha256-TCR8A35oETAZszrZFtNZulzCsh9UwGueTyHyYe+JQeI=";
2023-01-23 07:52:02 +00:00
leaveDotGit = true;
postFetch = ''
git -C $out rev-parse HEAD > $out/.git-revision
rm -rf $out/.git
'';
};
vendorHash = null;
nativeBuildInputs = [ git ];
ldflags = [
"-s"
"-w"
"-X main.version=${version}"
] ++ lib.optionals stdenv.hostPlatform.isStatic [
"-linkmode=external"
"-extldflags"
"-static"
];
2023-01-23 07:52:02 +00:00
preConfigure = ''
export ldflags+=" -X main.gitCommit=$(cat .git-revision)"
2023-01-23 07:52:02 +00:00
'';
tags = lib.optionals stdenv.hostPlatform.isStatic [
"cgo"
"netgo"
"osusergo"
"static_build"
];
2023-01-23 07:52:02 +00:00
passthru.tests.version = testers.testVersion {
package = manifest-tool;
};
meta = with lib; {
description = "Command line tool to create and query container image manifest list/indexes";
homepage = "https://github.com/estesp/manifest-tool";
license = licenses.asl20;
maintainers = with maintainers; [ tricktron ];
};
}