2020-01-16 18:07:29 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, rustPlatform, Foundation }:
|
2019-11-19 19:18:42 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "topgrade";
|
2020-04-01 21:28:35 +01:00
|
|
|
version = "4.3.1";
|
2019-11-19 19:18:42 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "r-darwish";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-04-01 21:28:35 +01:00
|
|
|
sha256 = "0r42hrhd33kkkvii9h4896cmr319q728pdnhhamkhzgilvzxrwrz";
|
2019-11-19 19:18:42 +00:00
|
|
|
};
|
|
|
|
|
2020-04-01 21:28:35 +01:00
|
|
|
cargoSha256 = "041djz3w7qmr19xq4cxgpw0m4qz2368q2wijw5aidvrxqlcz7xg2";
|
2019-11-19 19:18:42 +00:00
|
|
|
|
2020-01-16 18:07:29 +00:00
|
|
|
buildInputs = lib.optional stdenv.isDarwin Foundation;
|
|
|
|
|
2020-02-25 19:36:09 +00:00
|
|
|
# TODO: add manpage (topgrade.8) to postInstall on next update
|
|
|
|
|
2020-01-16 18:07:29 +00:00
|
|
|
meta = with lib; {
|
2019-11-19 19:18:42 +00:00
|
|
|
description = "Upgrade all the things";
|
|
|
|
homepage = "https://github.com/r-darwish/topgrade";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.all;
|
2020-01-16 18:08:43 +00:00
|
|
|
maintainers = with maintainers; [ filalex77 hugoreeves ];
|
2019-11-19 19:18:42 +00:00
|
|
|
};
|
|
|
|
}
|