Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pkgs/tools/compression/zstd/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
curl,
python3Packages,
haskellPackages,
testers,
zstd,
}:

stdenv.mkDerivation rec {
Expand Down Expand Up @@ -126,6 +128,7 @@ stdenv.mkDerivation rec {
python-zstd = python3Packages.zstd;
haskell-zstd = haskellPackages.zstd;
haskell-hs-zstd = haskellPackages.hs-zstd;
pkg-config = testers.hasPkgConfigModules { package = zstd; };
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same argument as in https://github.com/NixOS/nixpkgs/pull/436468/files#r2296679493, I think we should at least do the right thing for this test.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

};
};

Expand All @@ -146,5 +149,6 @@ stdenv.mkDerivation rec {
mainProgram = "zstd";
platforms = platforms.all;
maintainers = with maintainers; [ orivej ];
pkgConfigModules = [ "libzstd" ];
};
}
Loading