python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libconfig / default.nix
blobd94a0e1d78bd53f3a4cd9c634c96e915823e36bb
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "libconfig";
5   version = "1.7.3";
7   src = fetchurl {
8     url = "https://hyperrealm.github.io/${pname}/dist/${pname}-${version}.tar.gz";
9     sha256 = "sha256-VFFm1srAN3RDgdHpzFpUBQlOe/rRakEWmbz/QLuzHuc=";
10   };
12   doCheck = true;
14   configureFlags = lib.optional (stdenv.targetPlatform.isWindows || stdenv.hostPlatform.isStatic) "--disable-examples";
16   meta = with lib; {
17     homepage = "http://www.hyperrealm.com/libconfig";
18     description = "A simple library for processing structured configuration files";
19     license = licenses.lgpl3;
20     maintainers = [ maintainers.goibhniu ];
21     platforms = with platforms; linux ++ darwin ++ windows;
22   };