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

36 lines
794 B
Nix
Raw Normal View History

2021-09-10 23:13:40 +01:00
{ lib, stdenv
, fetchFromGitHub
, libiconv
, rustPlatform
, AppKit
}:
2021-09-05 21:05:57 +01:00
rustPlatform.buildRustPackage rec {
pname = "fclones";
2021-09-13 08:57:29 +01:00
version = "0.15.0";
2021-09-05 21:05:57 +01:00
src = fetchFromGitHub {
owner = "pkolaczk";
repo = pname;
rev = "v${version}";
2021-09-13 08:57:29 +01:00
sha256 = "sha256-8NUneKJpnBjC4OcAABEpI9p+saBqAk+l43FS8/tIYjc=";
2021-09-05 21:05:57 +01:00
};
2021-09-13 08:57:29 +01:00
cargoSha256 = "sha256-5qX45FJFaiE1vTXjllM9U1w57MX18GgKEFOEBMc64Jk=";
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
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
};
}