2017-01-01 17:19:14 +00:00
|
|
|
{ stdenv, fetchurl, boost, zlib, bzip2, wxGTK30 }:
|
2014-08-14 00:13:12 +01:00
|
|
|
|
2016-03-19 10:56:01 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "xylib";
|
2017-01-01 17:19:14 +00:00
|
|
|
version = "1.5";
|
2014-08-14 00:13:12 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://github.com/wojdyr/xylib/releases/download/v${version}/${pname}-${version}.tar.bz2";
|
2017-01-01 17:19:14 +00:00
|
|
|
sha256 = "1r2kx80zhdvz39k6h2fsncm2742xxvxl3z8a3fnr13jl9sl7mnnd";
|
2014-08-14 00:13:12 +01:00
|
|
|
};
|
|
|
|
|
2017-01-01 17:19:14 +00:00
|
|
|
buildInputs = [ boost zlib bzip2 wxGTK30 ];
|
2014-08-14 00:13:12 +01:00
|
|
|
|
2016-03-19 10:56:01 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Portable library for reading files that contain x-y data from powder diffraction, spectroscopy and other experimental methods";
|
2016-03-19 10:56:01 +00:00
|
|
|
license = licenses.lgpl21;
|
2014-08-14 00:13:12 +01:00
|
|
|
homepage = http://xylib.sourceforge.net/;
|
2016-03-19 10:56:01 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2014-08-14 00:13:12 +01:00
|
|
|
};
|
|
|
|
}
|