3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #97324 from zowoq/scc

scc: 2.12.0 -> 2.13.0
This commit is contained in:
Oleksii Filonenko 2020-09-07 11:37:33 +03:00 committed by GitHub
commit 2ff0bdfb52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,20 +1,20 @@
{ 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";