Files
nixpkgs/pkgs/by-name/_0/_0x/package.nix
2026-01-26 08:56:36 +02:00

27 lines
534 B
Nix

{
lib,
fetchCrate,
rustPlatform,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "0x";
version = "0.1.0";
src = fetchCrate {
inherit (finalAttrs) version;
pname = "ohx";
hash = "sha256-im9F0MQYddCcBthSldeQ6T0BIswhBSGc/LKUlJg/754=";
};
cargoHash = "sha256-TCpJz/ZIOFiEvjQzrSnUASPOHbqD8GYy3IpozFGat/g=";
meta = {
homepage = "https://github.com/mcy/0x";
description = "Colorful, configurable xxd";
mainProgram = "0x";
license = lib.licenses.asl20;
maintainers = [ ];
};
})