nixpkgs/pkgs/tools/misc/fclones/default.nix

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

37 lines
797 B
Nix
Raw Normal View History

2021-10-14 13:50:53 +00:00
{ lib
, stdenv
2021-09-10 22:13:40 +00:00
, fetchFromGitHub
, libiconv
, rustPlatform
, AppKit
}:
2021-09-05 20:05:57 +00:00
rustPlatform.buildRustPackage rec {
pname = "fclones";
2022-04-01 01:09:57 +00:00
version = "0.19.0";
2021-09-05 20:05:57 +00:00
src = fetchFromGitHub {
owner = "pkolaczk";
repo = pname;
rev = "v${version}";
2022-04-01 01:09:57 +00:00
sha256 = "0m6l6c71f40a6wc8w7cdikwx3blwqxw55p4frrww25qgd0xdcgls";
2021-09-05 20:05:57 +00:00
};
2022-04-01 01:09:57 +00:00
cargoSha256 = "1pl4lrr1p3c7j9fb0mb4spjzgcn9zvr67nskzgmhrbr3kyzc2ssc";
2021-09-05 20:05:57 +00:00
2021-09-10 22:13:40 +00:00
buildInputs = lib.optionals stdenv.isDarwin [
AppKit
libiconv
];
2021-09-05 20:05:57 +00:00
2021-09-10 22:13:40 +00:00
# device::test_physical_device_name test fails on Darwin
doCheck = !stdenv.isDarwin;
2021-09-05 20:05:57 +00:00
meta = with lib; {
description = "Efficient Duplicate File Finder and Remover";
homepage = "https://github.com/pkolaczk/fclones";
license = licenses.mit;
2021-09-10 22:13:54 +00:00
maintainers = with maintainers; [ cyounkins msfjarvis ];
2021-09-05 20:05:57 +00:00
};
}