depot/third_party/nixpkgs/pkgs/tools/filesystems/dupe-krill/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

25 lines
650 B
Nix

{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "dupe-krill";
version = "1.4.8";
src = fetchFromGitHub {
owner = "kornelski";
repo = pname;
rev = "v${version}";
sha256 = "sha256-2fT9bw5LgJUQ0tm1T/vV5SaDjNH0OGKt7QUQLd7nmOs=";
postFetch = ''
cp ${./Cargo.lock} $out/Cargo.lock
'';
};
cargoSha256 = "sha256-JUcIDUVzSLzblb2EbmSfuCAB+S0fyW6wpGF0b/xR+b0=";
meta = with lib; {
description = " A fast file deduplicator.";
homepage = "https://github.com/kornelski/dupe-krill";
license = with licenses; [ mit ];
maintainers = with maintainers; [ urbas ];
};
}