68 lines
1.4 KiB
Nix
68 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
pkg-config,
|
|
scdoc,
|
|
openssl,
|
|
zlib,
|
|
luaSupport ? stdenv.hostPlatform == stdenv.buildPlatform,
|
|
lua,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "apk-tools";
|
|
version = "2.14.10";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.alpinelinux.org";
|
|
owner = "alpine";
|
|
repo = "apk-tools";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-9TSkcJe7FVdTtfcCmwp+IWMYa/OL9OXJwPcKLyj5AAA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
scdoc
|
|
]
|
|
++ lib.optionals luaSupport [
|
|
lua
|
|
lua.pkgs.lua-zlib
|
|
];
|
|
buildInputs = [
|
|
openssl
|
|
zlib
|
|
]
|
|
++ lib.optional luaSupport lua;
|
|
strictDeps = true;
|
|
|
|
makeFlags = [
|
|
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
|
|
"SBINDIR=$(out)/bin"
|
|
"LIBDIR=$(out)/lib"
|
|
"LUA=${if luaSupport then "lua" else "no"}"
|
|
"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"
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString [
|
|
"-Wno-error=unused-result"
|
|
"-Wno-error=deprecated-declarations"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.alpinelinux.org/alpine/apk-tools";
|
|
description = "Alpine Package Keeper";
|
|
maintainers = with maintainers; [ ];
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
mainProgram = "apk";
|
|
};
|
|
}
|