apk-tools: init at 2.10.5

This commit is contained in:
Alyssa Ross 2020-06-17 14:12:56 +00:00
parent 033204e47a
commit e91e213aca
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ stdenv, lib, fetchurl, lua, openssl, pkg-config, zlib }:
stdenv.mkDerivation rec {
pname = "apk-tools";
version = "2.10.5";
src = fetchurl {
url = "https://dev.alpinelinux.org/archive/apk-tools/apk-tools-${version}.tar.xz";
sha256 = "00z3fqnv8vk2czdm4p2q4sldq0n8sxyf2qfwppyk7wj59d2sq8dp";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ lua openssl zlib ];
makeFlags = [
"SBINDIR=$(out)/bin"
"LIBDIR=$(out)/lib"
"LUA_LIBDIR=$(out)/lib/lua/${lib.versions.majorMinor lua.version}"
"MANDIR=$(out)/share/man"
"DOCDIR=$(out)/share/doc/apk"
"INCLUDEDIR=$(out)/include"
"PKGCONFIGDIR=$(out)/lib/pkgconfig"
];
NIX_CFLAGS_COMPILE = [ "-Wno-error=unused-result" ];
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://gitlab.alpinelinux.org/alpine/apk-tools";
description = "Alpine Package Keeper";
maintainers = with maintainers; [ qyliss ];
license = licenses.gpl2;
platforms = platforms.unix;
};
}

View file

@ -678,6 +678,10 @@ in
apfs-fuse = callPackage ../tools/filesystems/apfs-fuse { };
apk-tools = callPackage ../tools/package-management/apk-tools {
lua = lua5_3;
};
apktool = callPackage ../development/tools/apktool {
inherit (androidenv.androidPkgs_9_0) build-tools;
};