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