lzma: deprecate alias

This commit is contained in:
Sandro Jäckel
2021-04-04 19:49:52 +02:00
parent d24e2d1b0b
commit 3453b89f4b
76 changed files with 708 additions and 149 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, pcre, zlib, lzma}:
{lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, pcre, zlib, xz}:
stdenv.mkDerivation rec {
pname = "silver-searcher";
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
NIX_LDFLAGS = lib.optionalString stdenv.isLinux "-lgcc_s";
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ pcre zlib lzma ];
buildInputs = [ pcre zlib xz ];
meta = with lib; {
homepage = "https://github.com/ggreer/the_silver_searcher/";