fuc: 2.2.0 -> 3.0.1 (#400698)

This commit is contained in:
Pol Dellaiera
2025-04-28 05:24:45 +00:00
committed by GitHub
+12 -9
View File
@@ -6,19 +6,19 @@
rustfmt,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "fuc";
version = "2.2.0";
version = "3.0.1";
src = fetchFromGitHub {
owner = "SUPERCILEX";
repo = "fuc";
rev = version;
hash = "sha256-ZEiMyX85woPOKaMtw8qqrUXUhY8Ewm71I25inUMH1GQ=";
tag = finalAttrs.version;
hash = "sha256-wmCLJUuGL5u0VIIT17VB63xjfyBVy7/f0Qy27MezDN8=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-hNF/WCLkuUDigDpTIVOrza0JNiRSnZeYJDjLqHlHBnw=";
cargoHash = "sha256-hZEPH0Bx7lCU9xYIFLqBez4y+gIA0+WCqag3ZE6cPM0=";
RUSTC_BOOTSTRAP = 1;
@@ -33,10 +33,13 @@ rustPlatform.buildRustPackage rec {
rustfmt
];
meta = with lib; {
# error[E0602]: unknown lint: `clippy::unnecessary_debug_formatting`
doCheck = false;
meta = {
description = "Modern, performance focused unix commands";
homepage = "https://github.com/SUPERCILEX/fuc";
license = licenses.asl20;
maintainers = with maintainers; [ dit7ya ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dit7ya ];
};
}
})