Unverified Commit 39842fb4 authored by Marcin Serwin's avatar Marcin Serwin Committed by GitHub
Browse files

git-pkgs: 0.11.0 -> 0.15.0 (#495496)

parents adedcbda 55c2df36
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -7,16 +7,16 @@
}:
buildGoModule rec {
  pname = "git-pkgs";
  version = "0.11.0";
  version = "0.15.0";

  src = fetchFromGitHub {
    owner = "git-pkgs";
    repo = "git-pkgs";
    tag = "v${version}";
    hash = "sha256-XjW3qwybTmzW2CNgu1Edgs5ZZ9xl3+uS4sT8VWD3jyQ=";
    hash = "sha256-ePkLzUlHgFTJjzcZ5SP1LNcSCnaUhTO2nxDpt/jjvBc=";
  };

  vendorHash = "sha256-/LJwq17f7SAjSV2ZcLrdaKZYf9RVJ9wtYqEsW0ubT1Q=";
  vendorHash = "sha256-3753+h7NBpawkk0+UL+chIvS7vfklDU+T8uKjHsD6Yc=";

  subPackages = [ "." ];

@@ -24,13 +24,10 @@ buildGoModule rec {
    "-X github.com/git-pkgs/git-pkgs/cmd.version=${version}"
  ];

  # Tries to access the internet.
  doCheck = false;

  nativeBuildInputs = [ installShellFiles ];

  postBuild = ''
    go run scripts/generate-man.go
    go run scripts/generate-man/main.go
    installManPage man/*.1
  '';