3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/fclones/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
957 B
Nix
Raw Normal View History

2021-10-14 14:50:53 +01:00
{ lib
, stdenv
2021-09-10 23:13:40 +01:00
, fetchFromGitHub
, libiconv
, rustPlatform
, AppKit
}:
2021-09-05 21:05:57 +01:00
rustPlatform.buildRustPackage rec {
pname = "fclones";
2022-10-01 20:44:06 +01:00
version = "0.29.1";
2021-09-05 21:05:57 +01:00
src = fetchFromGitHub {
owner = "pkolaczk";
repo = pname;
rev = "v${version}";
2022-10-01 20:44:06 +01:00
sha256 = "sha256-spWfZx2br7gSLS0xaUBvMgvA326ISh16i/s0K3m1HCI=";
2021-09-05 21:05:57 +01:00
};
2022-10-01 20:44:06 +01:00
cargoSha256 = "sha256-qwjwauM2ejeMEbajVD8Deuhl/qMcB7MsvjR2CYGaF+M=";
2021-09-05 21:05:57 +01:00
2021-09-10 23:13:40 +01:00
buildInputs = lib.optionals stdenv.isDarwin [
AppKit
libiconv
];
2021-09-05 21:05:57 +01:00
2021-09-10 23:13:40 +01:00
# device::test_physical_device_name test fails on Darwin
doCheck = !stdenv.isDarwin;
2021-09-05 21:05:57 +01:00
2022-09-26 22:17:53 +01:00
checkFlags = [
# ofborg sometimes fails with "Resource temporarily unavailable"
"--skip=cache::test::return_none_if_different_transform_was_used"
];
2021-09-05 21:05:57 +01:00
meta = with lib; {
description = "Efficient Duplicate File Finder and Remover";
homepage = "https://github.com/pkolaczk/fclones";
license = licenses.mit;
2021-09-10 23:13:54 +01:00
maintainers = with maintainers; [ cyounkins msfjarvis ];
2021-09-05 21:05:57 +01:00
};
}