apk-tools: init at 2.10.5
This commit is contained in:
parent
033204e47a
commit
e91e213aca
36
pkgs/tools/package-management/apk-tools/default.nix
Normal file
36
pkgs/tools/package-management/apk-tools/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -678,6 +678,10 @@ in
|
|||||||
|
|
||||||
apfs-fuse = callPackage ../tools/filesystems/apfs-fuse { };
|
apfs-fuse = callPackage ../tools/filesystems/apfs-fuse { };
|
||||||
|
|
||||||
|
apk-tools = callPackage ../tools/package-management/apk-tools {
|
||||||
|
lua = lua5_3;
|
||||||
|
};
|
||||||
|
|
||||||
apktool = callPackage ../development/tools/apktool {
|
apktool = callPackage ../development/tools/apktool {
|
||||||
inherit (androidenv.androidPkgs_9_0) build-tools;
|
inherit (androidenv.androidPkgs_9_0) build-tools;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user