···1+{ fetchCrate
2+, lib
3+, rustPlatform
4+}:
5+6+rustPlatform.buildRustPackage rec {
7+ pname = "wambo";
8+ version = "0.3.1";
9+10+ src = fetchCrate {
11+ inherit pname version;
12+ hash = "sha256-WZQgQmoFmsWLgPYRWonJmyKq9IIJ+a6J+O19XPppJG4=";
13+ };
14+15+ cargoHash = "sha256-ghUdhWW5gURWxj/OhbcKPNeLzeJvndqAxEZmwKBATUk=";
16+17+ meta = {
18+ description = "All-in-one tool to convert decimal/bin/oct/hex and interpret bits as integers";
19+ longDescription = ''
20+ wambo is a binary that can easily shows you a numeric value in all important numeral systems
21+ (bin, hex, dec) + interprets the input as both signed and unsigned values (from i8 to i64,
22+ including f32 and f64). It also easily calculates you mibibytes to bytes, kilobytes to gibibytes,
23+ and so on.
24+ '';
25+ homepage = "https://github.com/phip1611/wambo";
26+ changelog = "https://github.com/phip1611/wambo/blob/v${version}/CHANGELOG.md";
27+ license = with lib.licenses; [ mit ];
28+ maintainers = with lib.maintainers; [ phip1611 ];
29+ };
30+}