python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / sblim-sfcc / default.nix
blob351eb5c154794cf0ad1264192dcabc7bb2632300
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, curl }:
3 stdenv.mkDerivation rec {
4   pname = "sblim-sfcc";
5   version = "2.2.9"; # this is technically 2.2.9-preview
7   src = fetchFromGitHub {
8     owner  = "kkaempf";
9     repo   = "sblim-sfcc";
10     rev    = "514a76af2020fd6dc6fc380df76cbe27786a76a2";
11     sha256 = "06c1mskl9ixbf26v88w0lvn6v2xd6n5f0jd5mckqrn9j4vmh70hs";
12   };
14   buildInputs = [ curl ];
16   nativeBuildInputs = [ autoreconfHook ];
18   enableParallelBuilding = true;
20   meta = with lib; {
21     description = "Small Footprint CIM Client Library";
22     homepage    = "https://sourceforge.net/projects/sblim/";
23     license     = licenses.cpl10;
24     maintainers = with maintainers; [ deepfire ];
25     platforms   = platforms.unix;
26   };