mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
37b721206e
Diff: https://github.com/pkolaczk/fclones/compare/v0.30.0...v0.31.0 Changelog: https://github.com/pkolaczk/fclones/releases/tag/v0.31.0
41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, stdenv
|
|
, darwin
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "fclones";
|
|
version = "0.31.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pkolaczk";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-VJU6qfcsV1VO/b8LQmIARGhkB8LrGcGsnfu1rUbK3rA=";
|
|
};
|
|
|
|
cargoHash = "sha256-KkJyB6Bdy+gjLHFgLML0rX8OF3/2yXO6XAwUOyvbQIE=";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk_11_0.frameworks.AppKit
|
|
];
|
|
|
|
# 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";
|
|
changelog = "https://github.com/pkolaczk/fclones/releases/tag/${src.rev}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ cyounkins figsoda msfjarvis ];
|
|
};
|
|
}
|