lzma: deprecate alias
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{ stdenv, lib, fetchurl, pkg-config, cmake, perlPackages, curl, gtest
|
||||
, gnutls, libtasn1, lzma, bzip2, lz4, zstd, libseccomp, udev
|
||||
, gnutls, libtasn1, xz, bzip2, lz4, zstd, libseccomp, udev
|
||||
, db, dpkg, libxslt, docbook_xsl, docbook_xml_dtd_45
|
||||
|
||||
# used when WITH_DOC=ON
|
||||
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ pkg-config cmake gtest libxslt.bin ];
|
||||
|
||||
buildInputs = [
|
||||
perlPackages.perl curl gnutls libtasn1 lzma bzip2 lz4 zstd libseccomp udev db dpkg
|
||||
perlPackages.perl curl gnutls libtasn1 xz bzip2 lz4 zstd libseccomp udev db dpkg
|
||||
] ++ lib.optionals withDocs [
|
||||
doxygen perlPackages.Po4a w3m docbook_xml_dtd_45
|
||||
] ++ lib.optionals withNLS [
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchurl, pkg-config, curl, gpgme, libarchive, bzip2, lzma, attr, acl, libxml2
|
||||
{ lib, stdenv, fetchurl, pkg-config, curl, gpgme, libarchive, bzip2, xz, attr, acl, libxml2
|
||||
, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
||||
buildInputs = [ curl gpgme libarchive bzip2 lzma attr acl libxml2 ];
|
||||
buildInputs = [ curl gpgme libarchive bzip2 xz attr acl libxml2 ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A lightweight package management system based upon ipkg";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ stdenv, lib, fetchurl, pkg-config, m4, perl, libarchive, openssl, zlib, bzip2,
|
||||
lzma, curl, runtimeShell }:
|
||||
xz, curl, runtimeShell }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pacman";
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
installFlags = [ "sysconfdir=${placeholder "out"}/etc" ];
|
||||
|
||||
nativeBuildInputs = [ pkg-config m4 ];
|
||||
buildInputs = [ curl perl libarchive openssl zlib bzip2 lzma ];
|
||||
buildInputs = [ curl perl libarchive openssl zlib bzip2 xz ];
|
||||
|
||||
postFixup = ''
|
||||
substituteInPlace $out/bin/repo-add \
|
||||
|
||||
Reference in New Issue
Block a user