nixpkgs-suyu/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-04-08 11:40:54 +02:00
version = "6.8.0";
src = fetchFromGitHub {
owner = "r-darwish";
repo = pname;
rev = "v${version}";
2021-04-08 11:40:54 +02:00
sha256 = "sha256-PPOsb9bne0q/WGAL3W2RGo/0yxyz/XXU3xYXKcCIqX0=";
};
2021-04-08 11:40:54 +02:00
cargoSha256 = "sha256-IirU/4hE+jo5A9pB7RnePhqcbCZXBCe0Ki6i7eEWIbk=";
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 ];
};
}