mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-26 22:14:42 +00:00
readstat: always depend on top-level libiconv
Top-level libiconv is defined per-platform. The actual libiconv library won't be built on platforms like Linux where it doesn't need to be, so there's no need to maintain a separate platform list here. Required to build for FreeBSD.
This commit is contained in:
parent
112e7c9a8e
commit
0c61668468
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
||||
|
||||
buildInputs = lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [ libiconv ];
|
||||
buildInputs = [ libiconv ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/WizardMac/ReadStat";
|
||||
|
@ -11223,9 +11223,7 @@ with pkgs;
|
||||
|
||||
read-edid = callPackage ../os-specific/linux/read-edid { };
|
||||
|
||||
readstat = callPackage ../applications/science/math/readstat {
|
||||
inherit (pkgs.darwin) libiconv;
|
||||
};
|
||||
readstat = callPackage ../applications/science/math/readstat { };
|
||||
|
||||
redir = callPackage ../tools/networking/redir { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user