depot/third_party/nixpkgs/pkgs/tools/misc/fclones/default.nix
Default email 5083ee08a2 Project import generated by Copybara.
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
2022-09-30 06:47:45 -05:00

41 lines
957 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, libiconv
, rustPlatform
, AppKit
}:
rustPlatform.buildRustPackage rec {
pname = "fclones";
version = "0.29.0";
src = fetchFromGitHub {
owner = "pkolaczk";
repo = pname;
rev = "v${version}";
sha256 = "sha256-0R9UB4xW5LYSA3rJIhJkYCEIN3Fn3eQaqZS1OP4kXNg=";
};
cargoSha256 = "sha256-elpMupN5Ah40+kWzXYDg+PUs0taOxdVhiPMO749H9fA=";
buildInputs = lib.optionals stdenv.isDarwin [
AppKit
libiconv
];
# 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";
license = licenses.mit;
maintainers = with maintainers; [ cyounkins msfjarvis ];
};
}