File tree 2 files changed +26
-1
lines changed
applications/version-management/git-sizer
2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change
1
+ { stdenv , lib , buildGoPackage , fetchFromGitHub } :
2
+
3
+ buildGoPackage rec {
4
+ pname = "git-sizer" ;
5
+ name = "${ pname } -${ version } " ;
6
+ version = "1.0.0" ;
7
+
8
+ goPackagePath = "github.com/github/git-sizer" ;
9
+
10
+ src = fetchFromGitHub {
11
+ owner = "github" ;
12
+ repo = pname ;
13
+ rev = "v${ version } " ;
14
+ sha256 = "11rvqpsyl41ph0fgm62k5q2p33zgnwj1jd91rd4lkaarpcd1sg5h" ;
15
+ } ;
16
+
17
+ meta = with lib ; {
18
+ description = "Compute various size metrics for a Git repository" ;
19
+ license = licenses . mit ;
20
+ maintainers = with maintainers ; [ matthewbauer ] ;
21
+ platforms = platforms . all ;
22
+ } ;
23
+ }
Original file line number Diff line number Diff line change @@ -2446,6 +2446,8 @@ with pkgs;
2446
2446
2447
2447
git-series = callPackage ../development/tools/git-series { };
2448
2448
2449
+ git-sizer = callPackage ../applications/version-management/git-sizer { };
2450
+
2449
2451
git-up = callPackage ../applications/version-management/git-up { };
2450
2452
2451
2453
gitfs = callPackage ../tools/filesystems/gitfs { };
@@ -10435,7 +10437,7 @@ with pkgs;
10435
10437
## libGL/libGLU/Mesa stuff
10436
10438
10437
10439
# Default libGL implementation, should provide headers and libGL.so/libEGL.so/... to link agains them
10438
- # Default implementation is `mesa`, but can be eventually replaced with `libglvnd`,
10440
+ # Default implementation is `mesa`, but can be eventually replaced with `libglvnd`,
10439
10441
# or other runtime dispatcher
10440
10442
libGL = mesa_noglu;
10441
10443
You can’t perform that action at this time.
0 commit comments