axmldec: init at 1.2.0

authored by Francisco Demartino and committed by Anderson Torres 4c035af9 ad197ff2

+38
+38
pkgs/by-name/ax/axmldec/package.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , doxygen 6 + , boost 7 + , zlib 8 + }: 9 + 10 + stdenv.mkDerivation rec { 11 + pname = "axmldec"; 12 + version = "1.2.0"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "ytsutano"; 16 + repo = "axmldec"; 17 + rev = "v${version}"; 18 + fetchSubmodules = true; 19 + hash = "sha256-LFDZZbRDa8mQmglgS4DA/OqXp0HJZ2uqg1hbStdgvUw="; 20 + }; 21 + 22 + nativeBuildInputs = [ cmake doxygen ]; 23 + buildInputs = [ boost zlib ]; 24 + 25 + meta = with lib; { 26 + description = "Stand-alone binary AndroidManifest.xml decoder"; 27 + longDescription = '' 28 + This tool accepts either a binary or a text XML file and prints the 29 + decoded XML to the standard output or a file. It also allows you to 30 + extract the decoded AndroidManifest.xml directly from an APK file. 31 + ''; 32 + homepage = "https://github.com/ytsutano/axmldec"; 33 + license = licenses.isc; 34 + mainProgram = "axmldec"; 35 + maintainers = with maintainers; [ franciscod ]; 36 + platforms = platforms.unix ++ platforms.windows; 37 + }; 38 + }