mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 12:44:44 +00:00
27 lines
534 B
Nix
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 = [ ];
|
|
};
|
|
})
|