mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 02:33:15 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, git
|
|
, stdenv
|
|
, testers
|
|
, manifest-tool
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "manifest-tool";
|
|
version = "2.1.8";
|
|
modRoot = "v2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "estesp";
|
|
repo = "manifest-tool";
|
|
rev = "v${version}";
|
|
hash = "sha256-1zsNIG7U389L4hXmQ1XGkWCu2ZpyGimoJkoJatY99E0=";
|
|
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"
|
|
];
|
|
|
|
preConfigure = ''
|
|
export ldflags+=" -X main.gitCommit=$(cat .git-revision)"
|
|
'';
|
|
|
|
tags = lib.optionals stdenv.hostPlatform.isStatic [
|
|
"cgo"
|
|
"netgo"
|
|
"osusergo"
|
|
"static_build"
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = manifest-tool;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Command line tool to create and query container image manifest list/indexes";
|
|
mainProgram = "manifest-tool";
|
|
homepage = "https://github.com/estesp/manifest-tool";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ tricktron ];
|
|
};
|
|
}
|