nixpkgs/pkgs/tools/package-management/apt/default.nix

53 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, pkg-config, cmake, perlPackages, curl, gtest
2021-03-14 18:12:53 +00:00
, gnutls, libtasn1, xz, bzip2, lz4, zstd, libseccomp, udev
2017-06-14 03:36:52 +00:00
, db, dpkg, libxslt, docbook_xsl, docbook_xml_dtd_45
# used when WITH_DOC=ON
, w3m
, doxygen
# used when WITH_NLS=ON
, gettext
# opts
, withDocs ? true
, withNLS ? true
}:
stdenv.mkDerivation rec {
pname = "apt";
version = "1.8.4";
2017-06-14 03:36:52 +00:00
src = fetchurl {
url = "mirror://debian/pool/main/a/apt/apt_${version}.tar.xz";
sha256 = "0gn4srqaaym85gc8nldqkv01477kdwr136an2nlpbdrsbx3y83zl";
2017-06-14 03:36:52 +00:00
};
nativeBuildInputs = [ pkg-config cmake gtest libxslt.bin ];
2017-06-14 03:36:52 +00:00
buildInputs = [
2021-03-14 18:12:53 +00:00
perlPackages.perl curl gnutls libtasn1 xz bzip2 lz4 zstd libseccomp udev db dpkg
2017-06-14 03:36:52 +00:00
] ++ lib.optionals withDocs [
doxygen perlPackages.Po4a w3m docbook_xml_dtd_45
2017-06-14 03:36:52 +00:00
] ++ lib.optionals withNLS [
gettext
];
cmakeFlags = [
"-DBERKELEY_DB_INCLUDE_DIRS=${db.dev}/include"
"-DGNUTLS_INCLUDE_DIR=${gnutls.dev}/include"
"-DDOCBOOK_XSL=${docbook_xsl}/share/xml/docbook-xsl"
"-DROOT_GROUP=root"
"-DWITH_DOC=${if withDocs then "ON" else "OFF"}"
"-DUSE_NLS=${if withNLS then "ON" else "OFF"}"
];
2017-06-14 03:36:52 +00:00
meta = with lib; {
description = "Command-line package management tools used on Debian-based systems";
homepage = "https://salsa.debian.org/apt-team/apt";
2017-06-14 03:36:52 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan ];
};
}