nixpkgs/pkgs/tools/misc/topgrade/default.nix

31 lines
799 B
Nix
Raw Normal View History

2020-10-31 00:32:09 +01:00
{ stdenv, lib, fetchFromGitHub, rustPlatform, Foundation, installShellFiles }:
rustPlatform.buildRustPackage rec {
pname = "topgrade";
2021-02-06 23:31:05 +01:00
version = "6.3.2";
src = fetchFromGitHub {
owner = "r-darwish";
repo = pname;
rev = "v${version}";
2021-02-06 23:31:05 +01:00
sha256 = "sha256-yKNHUH+oLQ99oH3yKYQCGAfX3tOI3ghLzLUpPzU6M0k=";
};
2021-02-06 23:31:05 +01:00
cargoSha256 = "sha256-kSxnEIAKF5Xf/x1LgtEj1u6IchbThtp3Sti5wnezlRA=";
buildInputs = lib.optional stdenv.isDarwin Foundation;
2020-10-31 00:32:09 +01:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installManPage topgrade.8
'';
2020-02-25 20:36:09 +01: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 ];
};
}