python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / xylib / default.nix
blobf7d7eed7e70e5eaea0dd2e161e493d80b389950d
1 { lib, stdenv, fetchurl, boost, zlib, bzip2, wxGTK30 }:
3 stdenv.mkDerivation rec {
4   pname = "xylib";
5   version = "1.6";
7   src = fetchurl {
8     url = "https://github.com/wojdyr/xylib/releases/download/v${version}/${pname}-${version}.tar.bz2";
9     sha256 = "1iqfrfrk78mki5csxysw86zm35ag71w0jvim0f12nwq1z8rwnhdn";
10   };
12   buildInputs = [ boost zlib bzip2 wxGTK30 ];
14   meta = with lib; {
15     description = "Portable library for reading files that contain x-y data from powder diffraction, spectroscopy and other experimental methods";
16     license = licenses.lgpl21;
17     homepage = "http://xylib.sourceforge.net/";
18     platforms = platforms.linux;
19     maintainers = with maintainers; [ pSub ];
20   };