3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/topgrade/default.nix

31 lines
799 B
Nix
Raw Normal View History

2020-10-30 23:32:09 +00:00
{ stdenv, lib, fetchFromGitHub, rustPlatform, Foundation, installShellFiles }:
rustPlatform.buildRustPackage rec {
pname = "topgrade";
2021-02-17 20:20:56 +00:00
version = "6.5.2";
src = fetchFromGitHub {
owner = "r-darwish";
repo = pname;
rev = "v${version}";
2021-02-17 20:20:56 +00:00
sha256 = "sha256-7tgYVxZ4E6qi/HLgfC0ZreHuXgtd3JMg4ENQL50YWr4=";
};
2021-02-17 20:20:56 +00:00
cargoSha256 = "sha256-xxJfNFegvtHJno7o54Rqai9DvvffrkxTFci673Yq/NI=";
buildInputs = lib.optional stdenv.isDarwin Foundation;
2020-10-30 23:32:09 +00:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installManPage topgrade.8
'';
2020-02-25 19:36:09 +00:00
meta = with lib; {
description = "Upgrade all the things";
homepage = "https://github.com/r-darwish/topgrade";
license = licenses.gpl3Only;
maintainers = with maintainers; [ Br1ght0ne hugoreeves SuperSandro2000 ];
};
}