python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / uid_wrapper / default.nix
blob8ba9066de32bf1e6090b8fc800a53d36406359ba
1 { lib, stdenv, fetchurl, cmake, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "uid_wrapper";
5   version = "1.2.9";
7   src = fetchurl {
8     url = "mirror://samba/cwrap/uid_wrapper-${version}.tar.gz";
9     sha256 = "sha256-fowCQHKCX+hrq0ZZHPS5CeOZz5j1SCL55SdC9CAEcIQ=";
10   };
12   nativeBuildInputs = [ cmake pkg-config ];
14   meta = with lib; {
15     description = "A wrapper for the user, group and hosts NSS API";
16     homepage = "https://git.samba.org/?p=uid_wrapper.git;a=summary;";
17     license = licenses.bsd3;
18     platforms = platforms.all;
19   };