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

30 lines
795 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
};
2020-05-04 00:04:16 +00:00
modSha256 = "1nl7d00prw1663xrl1nvj1xbs7wzkbqn75i92al821pz12dybdif";
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;
};
}