Merge pull request #193045 from r-ryantm/auto-update/fclones

fclones: 0.28.0 -> 0.29.0
This commit is contained in:
figsoda 2022-09-26 18:03:56 -04:00 committed by GitHub
commit fd850c62d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,16 +8,16 @@
rustPlatform.buildRustPackage rec {
pname = "fclones";
version = "0.28.0";
version = "0.29.0";
src = fetchFromGitHub {
owner = "pkolaczk";
repo = pname;
rev = "v${version}";
sha256 = "sha256-OOFmyTEiaZnCx15gkoMGooC4qlevKMBS7umawiKVZqE=";
sha256 = "sha256-0R9UB4xW5LYSA3rJIhJkYCEIN3Fn3eQaqZS1OP4kXNg=";
};
cargoSha256 = "sha256-jWYiZ6YNeGtmcHgqCgC8A7dEdJ29n3W/RdE0wQbOUOA=";
cargoSha256 = "sha256-elpMupN5Ah40+kWzXYDg+PUs0taOxdVhiPMO749H9fA=";
buildInputs = lib.optionals stdenv.isDarwin [
AppKit
@ -27,6 +27,11 @@ rustPlatform.buildRustPackage rec {
# device::test_physical_device_name test fails on Darwin
doCheck = !stdenv.isDarwin;
checkFlags = [
# ofborg sometimes fails with "Resource temporarily unavailable"
"--skip=cache::test::return_none_if_different_transform_was_used"
];
meta = with lib; {
description = "Efficient Duplicate File Finder and Remover";
homepage = "https://github.com/pkolaczk/fclones";