mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
axmldec: drop
Unmaintained for 8 years and broken
This commit is contained in:
parent
5c0c4807e4
commit
2f9867b094
2 changed files with 1 additions and 46 deletions
|
@ -1,46 +0,0 @@
|
||||||
{
|
|
||||||
lib,
|
|
||||||
stdenv,
|
|
||||||
fetchFromGitHub,
|
|
||||||
cmake,
|
|
||||||
doxygen,
|
|
||||||
boost,
|
|
||||||
zlib,
|
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
pname = "axmldec";
|
|
||||||
version = "1.2.0";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "ytsutano";
|
|
||||||
repo = "axmldec";
|
|
||||||
rev = "v${version}";
|
|
||||||
fetchSubmodules = true;
|
|
||||||
hash = "sha256-LFDZZbRDa8mQmglgS4DA/OqXp0HJZ2uqg1hbStdgvUw=";
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
cmake
|
|
||||||
doxygen
|
|
||||||
];
|
|
||||||
buildInputs = [
|
|
||||||
boost
|
|
||||||
zlib
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Stand-alone binary AndroidManifest.xml decoder";
|
|
||||||
longDescription = ''
|
|
||||||
This tool accepts either a binary or a text XML file and prints the
|
|
||||||
decoded XML to the standard output or a file. It also allows you to
|
|
||||||
extract the decoded AndroidManifest.xml directly from an APK file.
|
|
||||||
'';
|
|
||||||
homepage = "https://github.com/ytsutano/axmldec";
|
|
||||||
changelog = "https://github.com/ytsutano/axmldec/releases/tag/${src.rev}";
|
|
||||||
license = licenses.isc;
|
|
||||||
mainProgram = "axmldec";
|
|
||||||
maintainers = with maintainers; [ franciscod ];
|
|
||||||
platforms = platforms.unix ++ platforms.windows;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -317,6 +317,7 @@ mapAliases {
|
||||||
autoadb = throw "'autoadb' has been removed due to lack of maintenance upstream"; # Added 2025-01-25
|
autoadb = throw "'autoadb' has been removed due to lack of maintenance upstream"; # Added 2025-01-25
|
||||||
avldrums-lv2 = throw "'avldrums-lv2' has been renamed to/replaced by 'x42-avldrums'"; # Converted to throw 2024-10-17
|
avldrums-lv2 = throw "'avldrums-lv2' has been renamed to/replaced by 'x42-avldrums'"; # Converted to throw 2024-10-17
|
||||||
avrlibcCross = avrlibc; # Added 2024-09-06
|
avrlibcCross = avrlibc; # Added 2024-09-06
|
||||||
|
axmldec = throw "'axmldec' has been removed as it was broken and unmaintained for 8 years"; # Added 2025-05-17
|
||||||
awesome-4-0 = awesome; # Added 2022-05-05
|
awesome-4-0 = awesome; # Added 2022-05-05
|
||||||
aws-env = throw "aws-env has been removed as the upstream project was unmaintained"; # Added 2024-06-11
|
aws-env = throw "aws-env has been removed as the upstream project was unmaintained"; # Added 2024-06-11
|
||||||
aws-google-auth = throw "aws-google-auth has been removed as the upstream project was unmaintained"; # Added 2024-07-31
|
aws-google-auth = throw "aws-google-auth has been removed as the upstream project was unmaintained"; # Added 2024-07-31
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue