zstd: enable split outputs

This commit is contained in:
Yorick van Pelt
2020-02-10 20:03:57 +01:00
parent 07655cd724
commit fe9a655054
+4 -2
View File
@@ -49,12 +49,14 @@ stdenv.mkDerivation rec {
preInstall = stdenv.lib.optionalString enableShared '' preInstall = stdenv.lib.optionalString enableShared ''
substituteInPlace ../programs/zstdgrep \ substituteInPlace ../programs/zstdgrep \
--replace ":-grep" ":-${gnugrep}/bin/grep" \ --replace ":-grep" ":-${gnugrep}/bin/grep" \
--replace ":-zstdcat" ":-$out/bin/zstdcat" --replace ":-zstdcat" ":-$bin/bin/zstdcat"
substituteInPlace ../programs/zstdless \ substituteInPlace ../programs/zstdless \
--replace "zstdcat" "$out/bin/zstdcat" --replace "zstdcat" "$bin/bin/zstdcat"
''; '';
outputs = [ "bin" "dev" "man" "out" ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Zstandard real-time compression algorithm"; description = "Zstandard real-time compression algorithm";
longDescription = '' longDescription = ''