nixpkgs/pkgs/development/tools/mod/default.nix

32 lines
818 B
Nix
Raw Normal View History

{ buildGoModule, fetchFromGitHub, lib }:
2019-03-14 18:03:47 +00:00
buildGoModule rec {
pname = "mod";
2020-05-04 00:04:16 +00:00
version = "0.4.0";
2019-03-14 18:03:47 +00:00
src = fetchFromGitHub {
owner = "marwan-at-work";
repo = "mod";
rev = "v${version}";
2020-05-04 00:04:16 +00:00
sha256 = "1n0pipbq4fjban8hsxhyl5w8xrl4ai1pvgd02i1j1awmm2l3ykzl";
2019-03-14 18:03:47 +00:00
};
vendorSha256 = "032s62rjjq7bqiz5fg17yfkq4j4dsbl6vhvs1wf2sg8jvbqmvdwn";
2019-03-14 18:03:47 +00:00
doCheck = false;
2019-03-14 18:03:47 +00:00
subPackages = [ "cmd/mod" ];
meta = with lib; {
2019-03-14 18:03:47 +00:00
description = "Automated Semantic Import Versioning Upgrades for Go";
longDescription = ''
Command line tool to upgrade/downgrade Semantic Import Versioning in Go
Modules.
'';
2020-03-14 09:09:15 +00:00
homepage = "https://github.com/marwan-at-work/mod";
2019-03-14 18:03:47 +00:00
license = licenses.mit;
maintainers = with maintainers; [ kalbasit ];
platforms = platforms.linux ++ platforms.darwin;
};
}