go-check: 2018-09-12 -> unstable-2018-12-24

This commit is contained in:
Azat Bahawi 2022-06-12 02:30:28 +03:00
parent 2d012163f2
commit e90ede62f2
No known key found for this signature in database
GPG Key ID: C8C6BDDB3847F72B
2 changed files with 9 additions and 24 deletions

View File

@ -1,30 +1,26 @@
{ buildGoPackage { lib
, lib , buildGoModule
, fetchFromGitLab , fetchFromGitLab
}: }:
buildGoPackage rec { buildGoModule rec {
pname = "check-unstable"; pname = "check";
version = "2018-09-12"; version = "unstable-2018-12-24";
rev = "88db195993f8e991ad402754accd0635490769f9"; rev = "ccaba434e62accd51209476ad093810bd27ec150";
goPackagePath = "gitlab.com/opennota/check";
src = fetchFromGitLab { src = fetchFromGitLab {
inherit rev;
owner = "opennota"; owner = "opennota";
repo = "check"; repo = "check";
sha256 = "1983xmdkgpqda4qz8ashc6xv1zg5jl4zly3w566grxc5sfxpgf0i"; inherit rev;
sha256 = "sha256-u8U/62LZEn1ffwdGsUCGam4HAk7b2LetomCLZzHuuas=";
}; };
goDeps = ./deps.nix; vendorSha256 = "sha256-DyysiVYFpncmyCzlHIOEtWlCMpm90AC3gdItI9WinSo=";
meta = with lib; { meta = with lib; {
description = "A set of utilities for checking Go sources"; description = "A set of utilities for checking Go sources";
homepage = "https://gitlab.com/opennota/check"; homepage = "https://gitlab.com/opennota/check";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ kalbasit ]; maintainers = with maintainers; [ kalbasit ];
platforms = platforms.linux ++ platforms.darwin;
}; };
} }

View File

@ -1,11 +0,0 @@
[
{
goPackagePath = "golang.org/x/tools";
fetch = {
type = "git";
url = "https://go.googlesource.com/tools";
rev = "677d2ff680c1";
sha256 = "0vp1w1haqcjd82dxd6x9xrllbfwvm957rxwkpji96cgvhsli2bq5";
};
}
]