python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / bdf2sfd / default.nix
blobaca0a6b687f5259c859d80374976b61137c1f60d
1 { lib, stdenv, fetchFromGitHub, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "bdf2sfd";
5   version = "1.1.7";
7   src = fetchFromGitHub {
8     owner = "fcambus";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-q+FLmu2JCDTJ6zC8blkd27jAKWbNpPyKzmUj1bW1mfA=";
12   };
14   nativeBuildInputs = [ cmake ];
16   meta = with lib; {
17     description = "BDF to SFD converter";
18     homepage = "https://github.com/fcambus/bdf2sfd";
19     license = licenses.bsd2;
20     platforms = platforms.all;
21     maintainers = with maintainers; [ dtzWill ];
22   };