python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / crossguid / default.nix
blob09d07064527ac2dca726ee7eaaab4daf3adefabd
1 { lib, stdenv, fetchFromGitHub, cmake, libuuid }:
3 stdenv.mkDerivation rec {
4   pname = "crossguid";
5   version = "unstable-2019-05-29";
7   src = fetchFromGitHub {
8     owner = "graeme-hill";
9     repo = pname;
10     rev = "ca1bf4b810e2d188d04cb6286f957008ee1b7681";
11     hash = "sha256-37tKPDo4lukl/aaDWWSQYfsBNEnDjE7t6OnEZjBhcvQ=";
12   };
14   nativeBuildInputs = [ cmake ];
15   buildInputs = lib.optional stdenv.isLinux libuuid;
17   meta = with lib; {
18     description = "Lightweight cross platform C++ GUID/UUID library";
19     license = licenses.mit;
20     homepage = "https://github.com/graeme-hill/crossguid";
21     maintainers = with maintainers; [ lilyinstarlight ];
22     platforms = platforms.unix;
23   };