Merge pull request #216862 from phip1611/init-wambo

wambo: init at 0.3.1

authored by Anderson Torres and committed by GitHub 5217f8bb da267116

+32
+30
pkgs/development/tools/wambo/default.nix
···
··· 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 + }
+2
pkgs/top-level/all-packages.nix
··· 13134 13135 wakatime = python2Packages.callPackage ../tools/misc/wakatime { }; 13136 13137 weather = callPackage ../applications/misc/weather { }; 13138 13139 wego = callPackage ../applications/misc/wego { };
··· 13134 13135 wakatime = python2Packages.callPackage ../tools/misc/wakatime { }; 13136 13137 + wambo = callPackage ../development/tools/wambo { }; 13138 + 13139 weather = callPackage ../applications/misc/weather { }; 13140 13141 wego = callPackage ../applications/misc/wego { };