···11+{ fetchCrate
22+, lib
33+, rustPlatform
44+}:
55+66+rustPlatform.buildRustPackage rec {
77+ pname = "wambo";
88+ version = "0.3.1";
99+1010+ src = fetchCrate {
1111+ inherit pname version;
1212+ hash = "sha256-WZQgQmoFmsWLgPYRWonJmyKq9IIJ+a6J+O19XPppJG4=";
1313+ };
1414+1515+ cargoHash = "sha256-ghUdhWW5gURWxj/OhbcKPNeLzeJvndqAxEZmwKBATUk=";
1616+1717+ meta = {
1818+ description = "All-in-one tool to convert decimal/bin/oct/hex and interpret bits as integers";
1919+ longDescription = ''
2020+ wambo is a binary that can easily shows you a numeric value in all important numeral systems
2121+ (bin, hex, dec) + interprets the input as both signed and unsigned values (from i8 to i64,
2222+ including f32 and f64). It also easily calculates you mibibytes to bytes, kilobytes to gibibytes,
2323+ and so on.
2424+ '';
2525+ homepage = "https://github.com/phip1611/wambo";
2626+ changelog = "https://github.com/phip1611/wambo/blob/v${version}/CHANGELOG.md";
2727+ license = with lib.licenses; [ mit ];
2828+ maintainers = with lib.maintainers; [ phip1611 ];
2929+ };
3030+}