mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
ddh: init at 0.13.0
This commit is contained in:
parent
8c6c94de4c
commit
404ef7091b
26
pkgs/tools/system/ddh/default.nix
Normal file
26
pkgs/tools/system/ddh/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib, fetchFromGitHub, rustPlatform, ... }:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "ddh";
|
||||
version = "0.13.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "darakian";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "XFfTpX4c821pcTAJZFUjdqM940fRoBwkJC6KTknXtCw=";
|
||||
};
|
||||
|
||||
cargoSha256 = "6yPDkbag81TZ4k72rbmGT6HWKdGK4yfKxjGNFKEWXPI=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A fast duplicate file finder";
|
||||
longDescription = ''
|
||||
DDH traverses input directories and their subdirectories.
|
||||
It also hashes files as needed and reports findings.
|
||||
'';
|
||||
homepage = "https://github.com/darakian/ddh";
|
||||
license = licenses.lgpl3Only;
|
||||
maintainers = with maintainers; [ h7x4 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -5841,6 +5841,8 @@ with pkgs;
|
||||
|
||||
dd_rescue = callPackage ../tools/system/dd_rescue { };
|
||||
|
||||
ddh = callPackage ../tools/system/ddh { };
|
||||
|
||||
ddrescue = callPackage ../tools/system/ddrescue { };
|
||||
|
||||
ddrescueview = callPackage ../tools/system/ddrescueview { };
|
||||
|
Loading…
Reference in New Issue
Block a user