Merge pull request #89138 from bhipple/fix/go-bindata

go-bindata: use fetchFromGitHub
This commit is contained in:
Florian Klink 2020-05-31 16:12:05 +02:00 committed by GitHub
commit d5831b9c36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,25 +1,25 @@
{ stdenv, buildGoPackage, fetchgit }:
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
buildGoPackage {
pname = "go-bindata";
version = "20151023-${stdenv.lib.strings.substring 0 7 rev}";
rev = "a0ff2567cfb70903282db057e799fd826784d41d";
version = "unstable-2015-10-23";
goPackagePath = "github.com/jteeuwen/go-bindata";
src = fetchgit {
inherit rev;
url = "https://github.com/jteeuwen/go-bindata";
src = fetchFromGitHub {
owner = "jteeuwen";
repo = "go-bindata";
rev = "a0ff2567cfb70903282db057e799fd826784d41d";
sha256 = "0d6zxv0hgh938rf59p1k5lj0ymrb8kcps2vfrb9kaarxsvg7y69v";
};
excludedPackages = "testdata";
meta = with stdenv.lib; {
homepage = "https://github.com/jteeuwen/go-bindata";
homepage = "https://github.com/jteeuwen/go-bindata";
description = "A small utility which generates Go code from any file, useful for embedding binary data in a Go program";
maintainers = with maintainers; [ cstrahan ];
license = licenses.cc0 ;
platforms = platforms.all;
license = licenses.cc0;
platforms = platforms.all;
};
}