forked from mirrors/nixpkgs
scc: 2.12.0 -> 2.13.0
https://github.com/boyter/scc/releases/tag/v2.13.0
This commit is contained in:
parent
745d47ef38
commit
02e6ed4b62
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue