gci: 0.13.7 -> 0.14.0 (#517238)
This commit is contained in:
@@ -2,25 +2,36 @@
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
testers,
|
||||
}:
|
||||
buildGoModule rec {
|
||||
buildGoModule (finalAttrs: {
|
||||
pname = "gci";
|
||||
version = "0.13.7";
|
||||
version = "0.14.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "daixiang0";
|
||||
repo = "gci";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-vSVa0fTGKf8H1cURFD0dha65TgOLMa43NuA043TEFu4=";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-+qoHORHUMgr03v3RB+7+g9O/tlDkQKFmKybma0FdhVs=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-NWVhuJAWwZ9EPLq/PY8nqqRXXPgahGdFNVqBTDvCnMw=";
|
||||
vendorHash = "sha256-MS6Ei58HpR/ueqdmGEx15WoSSSwDpQUcxAWz36UnhmA=";
|
||||
|
||||
excludedPackages = [ "v2" ];
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
];
|
||||
|
||||
passthru.tests.version = testers.testVersion {
|
||||
package = finalAttrs.finalPackage;
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Controls golang package import order and makes it always deterministic";
|
||||
homepage = "https://github.com/daixiang0/gci";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ krostar ];
|
||||
broken = true;
|
||||
mainProgram = "gci";
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user