nixpkgs/pkgs/tools/text/gucci/default.nix

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

39 lines
963 B
Nix
Raw Normal View History

2022-04-06 14:43:09 +00:00
{ lib, buildGoModule, fetchFromGitHub, testers, gucci }:
2022-04-06 14:43:09 +00:00
buildGoModule rec {
pname = "gucci";
2023-07-04 07:59:16 +00:00
version = "1.6.10";
src = fetchFromGitHub {
owner = "noqcks";
repo = "gucci";
2022-04-06 14:43:09 +00:00
rev = "refs/tags/${version}";
2023-07-04 07:59:16 +00:00
sha256 = "sha256-bwPQQtaPHby96C5ZHZhBTok+m8GPPS40U1CUPVYqCa4=";
};
2023-03-02 21:57:01 +00:00
vendorHash = "sha256-/4OnbtxxhXQnmSV6UbjgzXdL7szhL9rKiG5BR8FsyqI=";
2022-04-06 14:43:09 +00:00
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;
2022-04-06 14:43:09 +00:00
maintainers = with maintainers; [ braydenjw ];
};
}