askalono: init at 0.4.6

figsoda 2b01ef76 66ed9c81

+27
+25
pkgs/tools/misc/askalono/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchCrate 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "askalono"; 8 + version = "0.4.6"; 9 + 10 + src = fetchCrate { 11 + pname = "askalono-cli"; 12 + inherit version; 13 + hash = "sha256-7l5bHSsmuMoHbbOI3TAYFeHwD3Y62JvfrrXZa08V3+U="; 14 + }; 15 + 16 + cargoHash = "sha256-OkN8V37GApJvremRJlWG3HSpWgMC17Ge8JMTiQVoc/g="; 17 + 18 + meta = with lib; { 19 + description = "A tool to detect open source licenses from texts"; 20 + homepage = "https://github.com/jpeddicord/askalono"; 21 + changelog = "https://github.com/jpeddicord/askalono/blob/${version}/CHANGELOG.md"; 22 + license = licenses.asl20; 23 + maintainers = with maintainers; [ figsoda ]; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 1336 1336 1337 1337 amidst = callPackage ../tools/games/minecraft/amidst { }; 1338 1338 1339 + askalono = callPackage ../tools/misc/askalono { }; 1340 + 1339 1341 asleap = callPackage ../tools/networking/asleap { }; 1340 1342 1341 1343 butler = callPackage ../games/itch/butler.nix {