Merge pull request #113253 from SuperSandro2000/packages

This commit is contained in:
Sandro
2021-02-16 07:42:04 +01:00
committed by GitHub
4 changed files with 36 additions and 16 deletions
+25
View File
@@ -0,0 +1,25 @@
{ lib, python3Packages, fetchFromGitHub }:
python3Packages.buildPythonApplication rec {
pname = "savepagenow";
version = "1.1.1";
src = fetchFromGitHub {
owner = "pastpages";
repo = pname;
rev = "v${version}";
sha256 = "1lz6rc47cds9rb35jdf8n13gr61wdkh5jqzx4skikm1yrqkwjyhm";
};
propagatedBuildInputs = with python3Packages; [ click requests ];
# requires network access
doCheck = false;
meta = with lib; {
description = "A simple Python wrapper for archive.org's \"Save Page Now\" capturing service";
homepage = "https://github.com/pastpages/savepagenow";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}
+3 -3
View File
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "topgrade";
version = "6.5.0";
version = "6.5.1";
src = fetchFromGitHub {
owner = "r-darwish";
repo = pname;
rev = "v${version}";
sha256 = "sha256-O2k9eUs+aopwtT/DXYIv9pc9z8W4K6cXUE6diqNDTrg=";
sha256 = "sha256-5S9mKmnrycrL7DFq8duWVbzEHQfiXAXQYcc3bdiVu1k=";
};
cargoSha256 = "1yjhphw680cf93lgknksa67k0w0rhq6s3jinyn649wd71gbc5656";
cargoSha256 = "0sbkqdwfsfb7q52a9vh5lmggrc8ny2l0xr4qx3m42xm0h64f3y6n";
buildInputs = lib.optional stdenv.isDarwin Foundation;