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.
39 lines
963 B
Nix
39 lines
963 B
Nix
{ lib, buildGoModule, fetchFromGitHub, testers, gucci }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gucci";
|
|
version = "1.6.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "noqcks";
|
|
repo = "gucci";
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-bwPQQtaPHby96C5ZHZhBTok+m8GPPS40U1CUPVYqCa4=";
|
|
};
|
|
|
|
vendorHash = "sha256-/4OnbtxxhXQnmSV6UbjgzXdL7szhL9rKiG5BR8FsyqI=";
|
|
|
|
ldflags = [ "-s" "-w" "-X main.AppVersion=${version}" ];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = gucci;
|
|
};
|
|
|
|
checkFlags = [
|
|
"-short"
|
|
# Integration tests rely on Ginkgo but fail.
|
|
# Related: https://github.com/onsi/ginkgo/issues/602
|
|
#
|
|
# Disable integration tests.
|
|
"-skip=^TestIntegration"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple CLI templating tool written in golang";
|
|
mainProgram = "gucci";
|
|
homepage = "https://github.com/noqcks/gucci";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ braydenjw ];
|
|
};
|
|
}
|