mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
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 ];
|
|
};
|
|
}
|