2020-10-30 16:32:09 -07:00
|
|
|
{ stdenv, lib, fetchFromGitHub, rustPlatform, Foundation, installShellFiles }:
|
2019-11-19 11:18:42 -08:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "topgrade";
|
2020-12-04 20:10:34 -08:00
|
|
|
version = "6.0.1";
|
2019-11-19 11:18:42 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "r-darwish";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-12-04 20:10:34 -08:00
|
|
|
sha256 = "1bpq4zki98vw793rvrk9qwgh62f1qwzh0cm4a3h0bif43kg836n0";
|
2019-11-19 11:18:42 -08:00
|
|
|
};
|
|
|
|
|
2020-12-04 20:10:34 -08:00
|
|
|
cargoSha256 = "1486pfiv4lfzdz3hj5z6s7q8lhzrldffji3fsf10z50sm4fhq73q";
|
2019-11-19 11:18:42 -08:00
|
|
|
|
2020-01-16 10:07:29 -08:00
|
|
|
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
|
|
|
|
2020-01-16 10:07:29 -08:00
|
|
|
meta = with lib; {
|
2019-11-19 11:18:42 -08:00
|
|
|
description = "Upgrade all the things";
|
|
|
|
homepage = "https://github.com/r-darwish/topgrade";
|
|
|
|
license = licenses.gpl3;
|
2020-11-17 03:02:06 -08:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne hugoreeves ];
|
2019-11-19 11:18:42 -08:00
|
|
|
};
|
|
|
|
}
|