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

31 lines
781 B
Nix
Raw Normal View History

2020-10-30 16:32:09 -07:00
{ stdenv, lib, fetchFromGitHub, rustPlatform, Foundation, installShellFiles }:
rustPlatform.buildRustPackage rec {
pname = "topgrade";
2020-10-30 16:32:09 -07:00
version = "5.8.1";
src = fetchFromGitHub {
owner = "r-darwish";
repo = pname;
rev = "v${version}";
2020-10-30 16:32:09 -07:00
sha256 = "0m3kqk0ghlpzysyql777jlk5c0nb36z44vabw6r0484fh5vncwrh";
};
2020-10-30 16:32:09 -07:00
cargoSha256 = "1h5cyiyhpagdin9a8gfsccbl4jahw33nbkg5m74axyp4qrfc1mkz";
buildInputs = lib.optional stdenv.isDarwin Foundation;
2020-10-30 16:32:09 -07:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installManPage topgrade.8
'';
2020-02-25 11:36:09 -08:00
meta = with lib; {
description = "Upgrade all the things";
homepage = "https://github.com/r-darwish/topgrade";
license = licenses.gpl3;
2020-01-16 10:08:43 -08:00
maintainers = with maintainers; [ filalex77 hugoreeves ];
};
}