mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #136806 from cyounkins/maintainers_cyounkins
This commit is contained in:
commit
a4156f2b86
3 changed files with 37 additions and 0 deletions
|
@ -2285,6 +2285,12 @@
|
||||||
githubId = 1382175;
|
githubId = 1382175;
|
||||||
name = "Oliver Matthews";
|
name = "Oliver Matthews";
|
||||||
};
|
};
|
||||||
|
cyounkins = {
|
||||||
|
name = "Craig Younkins";
|
||||||
|
email = "cyounkins@gmail.com";
|
||||||
|
github = "cyounkins";
|
||||||
|
githubId = 346185;
|
||||||
|
};
|
||||||
cypherpunk2140 = {
|
cypherpunk2140 = {
|
||||||
email = "stefan.mihaila@pm.me";
|
email = "stefan.mihaila@pm.me";
|
||||||
github = "stefan-mihaila";
|
github = "stefan-mihaila";
|
||||||
|
|
29
pkgs/tools/misc/fclones/default.nix
Normal file
29
pkgs/tools/misc/fclones/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, udev }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "fclones";
|
||||||
|
version = "0.14.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "pkolaczk";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1ni5amy903cy822yhw070bcrrixrw2m1vr66q1h32bc98pyv4w05";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "1gcb46k7bwdfsf6hyvmi6dna1nf6myzy63bhjfp0wy7c8g4m2mg8";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
buildInputs = [ udev ];
|
||||||
|
|
||||||
|
# tests in dedupe.rs fail due to
|
||||||
|
# "creation time is not available for the filesystem"
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Efficient Duplicate File Finder and Remover";
|
||||||
|
homepage = "https://github.com/pkolaczk/fclones";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ cyounkins ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -24713,6 +24713,8 @@ with pkgs;
|
||||||
|
|
||||||
fbida = callPackage ../applications/graphics/fbida { };
|
fbida = callPackage ../applications/graphics/fbida { };
|
||||||
|
|
||||||
|
fclones = callPackage ../tools/misc/fclones { };
|
||||||
|
|
||||||
fcp = callPackage ../tools/misc/fcp { };
|
fcp = callPackage ../tools/misc/fcp { };
|
||||||
|
|
||||||
fdupes = callPackage ../tools/misc/fdupes { };
|
fdupes = callPackage ../tools/misc/fdupes { };
|
||||||
|
|
Loading…
Reference in a new issue