about summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-sizer
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-12-01 22:09:18 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-12-03 18:42:27 -0300
commit18df6097bd2f7ef59f71fd5e92f68f116ca4e9bc (patch)
tree72784a36a9e1eb34c4395563890d65f4744478f9 /pkgs/applications/version-management/git-sizer
parent4f7ca6ba792adecd397a95f38527e85b0906d043 (diff)
git-sizer: move to git-and-tools
Diffstat (limited to 'pkgs/applications/version-management/git-sizer')
-rw-r--r--pkgs/applications/version-management/git-sizer/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/applications/version-management/git-sizer/default.nix b/pkgs/applications/version-management/git-sizer/default.nix
deleted file mode 100644
index ed7239b80cb33..0000000000000
--- a/pkgs/applications/version-management/git-sizer/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, buildGoModule, fetchFromGitHub, testers, git-sizer }:
-
-buildGoModule rec {
-  pname = "git-sizer";
-  version = "1.5.0";
-
-  src = fetchFromGitHub {
-    owner = "github";
-    repo = pname;
-    rev = "v${version}";
-    sha256 = "sha256-On7QBTzKfnuuzwMQ8m1odxGqfIKL+EDg5V05Kxuhmqw=";
-  };
-
-  vendorSha256 = "sha256-oRlsD99XiI/0ZWibjyRcycmGab+vMbXrV5hIdIyUDYg=";
-
-  ldflags = [ "-s" "-w" "-X main.BuildVersion=${version}" ];
-
-  doCheck = false;
-
-  passthru.tests.vesion = testers.testVersion {
-    package = git-sizer;
-  };
-
-  meta = with lib; {
-    description = "Compute various size metrics for a Git repository";
-    homepage = "https://github.com/github/git-sizer";
-    license = licenses.mit;
-    maintainers = with maintainers; [ matthewbauer ];
-  };
-}