nixpkgs/pkgs/development/libraries/xylib/default.nix

22 lines
697 B
Nix
Raw Normal View History

2017-01-01 17:19:14 +00:00
{ stdenv, fetchurl, boost, zlib, bzip2, wxGTK30 }:
2014-08-13 23:13:12 +00:00
2016-03-19 10:56:01 +00:00
stdenv.mkDerivation rec {
name = "xylib-${version}";
2017-01-01 17:19:14 +00:00
version = "1.5";
2014-08-13 23:13:12 +00:00
src = fetchurl {
2017-01-01 17:19:14 +00:00
url = "https://github.com/wojdyr/xylib/releases/download/v${version}/${name}.tar.bz2";
sha256 = "1r2kx80zhdvz39k6h2fsncm2742xxvxl3z8a3fnr13jl9sl7mnnd";
2014-08-13 23:13:12 +00:00
};
2017-01-01 17:19:14 +00:00
buildInputs = [ boost zlib bzip2 wxGTK30 ];
2014-08-13 23:13:12 +00:00
2016-03-19 10:56:01 +00:00
meta = with stdenv.lib; {
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-13 23:13:12 +00:00
homepage = http://xylib.sourceforge.net/;
2016-03-19 10:56:01 +00:00
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
2014-08-13 23:13:12 +00:00
};
}