tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ddh: init at 0.13.0
h7x4
3 years ago
404ef709
8c6c94de
+28
2 changed files
expand all
collapse all
unified
split
pkgs
tools
system
ddh
default.nix
top-level
all-packages.nix
+26
pkgs/tools/system/ddh/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ lib, fetchFromGitHub, rustPlatform, ... }:
2
+
rustPlatform.buildRustPackage rec {
3
+
pname = "ddh";
4
+
version = "0.13.0";
5
+
6
+
src = fetchFromGitHub {
7
+
owner = "darakian";
8
+
repo = pname;
9
+
rev = version;
10
+
sha256 = "XFfTpX4c821pcTAJZFUjdqM940fRoBwkJC6KTknXtCw=";
11
+
};
12
+
13
+
cargoSha256 = "6yPDkbag81TZ4k72rbmGT6HWKdGK4yfKxjGNFKEWXPI=";
14
+
15
+
meta = with lib; {
16
+
description = "A fast duplicate file finder";
17
+
longDescription = ''
18
+
DDH traverses input directories and their subdirectories.
19
+
It also hashes files as needed and reports findings.
20
+
'';
21
+
homepage = "https://github.com/darakian/ddh";
22
+
license = licenses.lgpl3Only;
23
+
maintainers = with maintainers; [ h7x4 ];
24
+
platforms = platforms.all;
25
+
};
26
+
}
+2
pkgs/top-level/all-packages.nix
···
5841
5842
dd_rescue = callPackage ../tools/system/dd_rescue { };
5843
0
0
5844
ddrescue = callPackage ../tools/system/ddrescue { };
5845
5846
ddrescueview = callPackage ../tools/system/ddrescueview { };
···
5841
5842
dd_rescue = callPackage ../tools/system/dd_rescue { };
5843
5844
+
ddh = callPackage ../tools/system/ddh { };
5845
+
5846
ddrescue = callPackage ../tools/system/ddrescue { };
5847
5848
ddrescueview = callPackage ../tools/system/ddrescueview { };