forked from mirrors/nixpkgs
36 lines
794 B
Nix
36 lines
794 B
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, libiconv
|
|
, rustPlatform
|
|
, AppKit
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "fclones";
|
|
version = "0.15.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pkolaczk";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-8NUneKJpnBjC4OcAABEpI9p+saBqAk+l43FS8/tIYjc=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-5qX45FJFaiE1vTXjllM9U1w57MX18GgKEFOEBMc64Jk=";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
AppKit
|
|
libiconv
|
|
];
|
|
|
|
# device::test_physical_device_name test fails on Darwin
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
meta = with lib; {
|
|
description = "Efficient Duplicate File Finder and Remover";
|
|
homepage = "https://github.com/pkolaczk/fclones";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ cyounkins msfjarvis ];
|
|
};
|
|
}
|