lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #136806 from cyounkins/maintainers_cyounkins

authored by

Sandro and committed by
GitHub
a4156f2b 37918919

+37
+6
maintainers/maintainer-list.nix
··· 2285 2285 githubId = 1382175; 2286 2286 name = "Oliver Matthews"; 2287 2287 }; 2288 + cyounkins = { 2289 + name = "Craig Younkins"; 2290 + email = "cyounkins@gmail.com"; 2291 + github = "cyounkins"; 2292 + githubId = 346185; 2293 + }; 2288 2294 cypherpunk2140 = { 2289 2295 email = "stefan.mihaila@pm.me"; 2290 2296 github = "stefan-mihaila";
+29
pkgs/tools/misc/fclones/default.nix
··· 1 + { lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, udev }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "fclones"; 5 + version = "0.14.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "pkolaczk"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "1ni5amy903cy822yhw070bcrrixrw2m1vr66q1h32bc98pyv4w05"; 12 + }; 13 + 14 + cargoSha256 = "1gcb46k7bwdfsf6hyvmi6dna1nf6myzy63bhjfp0wy7c8g4m2mg8"; 15 + 16 + nativeBuildInputs = [ pkg-config ]; 17 + buildInputs = [ udev ]; 18 + 19 + # tests in dedupe.rs fail due to 20 + # "creation time is not available for the filesystem" 21 + doCheck = false; 22 + 23 + meta = with lib; { 24 + description = "Efficient Duplicate File Finder and Remover"; 25 + homepage = "https://github.com/pkolaczk/fclones"; 26 + license = licenses.mit; 27 + maintainers = with maintainers; [ cyounkins ]; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 24713 24713 24714 24714 fbida = callPackage ../applications/graphics/fbida { }; 24715 24715 24716 + fclones = callPackage ../tools/misc/fclones { }; 24717 + 24716 24718 fcp = callPackage ../tools/misc/fcp { }; 24717 24719 24718 24720 fdupes = callPackage ../tools/misc/fdupes { };