Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
1.0 KiB
Nix
33 lines
1.0 KiB
Nix
{
|
|
fetchCrate,
|
|
lib,
|
|
rustPlatform,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wambo";
|
|
version = "0.4.0";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-3EwNC78DhSXbVFSg6q+66yge4S1m5icJ5nOhoy9qsRI=";
|
|
};
|
|
|
|
cargoHash = "sha256-rFUZGP9pH5J3iXGTyjdtDjS+wiWo5pD3X9eUtIivp2c=";
|
|
|
|
meta = {
|
|
description = "All-in-one tool to convert decimal/bin/oct/hex and interpret bits as integers";
|
|
mainProgram = "wambo";
|
|
longDescription = ''
|
|
wambo is a binary that can easily shows you a numeric value in all important numeral systems
|
|
(bin, hex, dec) + interprets the input as both signed and unsigned values (from i8 to i64,
|
|
including f32 and f64). It also easily calculates you mibibytes to bytes, kilobytes to gibibytes,
|
|
and so on.
|
|
'';
|
|
homepage = "https://github.com/phip1611/wambo";
|
|
changelog = "https://github.com/phip1611/wambo/blob/v${version}/CHANGELOG.md";
|
|
license = with lib.licenses; [ mit ];
|
|
maintainers = with lib.maintainers; [ phip1611 ];
|
|
};
|
|
}
|