Unverified Commit 2ff0bdfb authored by Oleksii Filonenko's avatar Oleksii Filonenko Committed by GitHub
Browse files

Merge pull request #97324 from zowoq/scc

scc: 2.12.0 -> 2.13.0
parents 5b0812fa 02e6ed4b
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
{ stdenv, buildGoPackage, fetchFromGitHub }:
{ stdenv, buildGoModule, fetchFromGitHub }:

buildGoPackage rec {
buildGoModule rec {
  pname = "scc";
  version = "2.12.0";
  version = "2.13.0";

  src = fetchFromGitHub {
    owner = "boyter";
    repo = "scc";
    rev = "v${version}";
    sha256 = "0hbcq5qn97kr9d4q9m2p1mj3ijn8zmwycrs5bgf1kfiwr09wg2yh";
    sha256 = "16p5g20n5jsbisbgikk9xny94xx6c0dxf19saa686ghh31jr2hh3";
  };

  goPackagePath = "github.com/boyter/scc";
  vendorSha256 = null;

  # scc has a scripts/ sub-package that's for testing.
  subPackages = [ "./" ];
  excludedPackages = [ "scripts" ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/boyter/scc";