xylib: 1.4 -> 1.5

This commit is contained in:
Pascal Wittmann 2017-01-01 18:19:14 +01:00
parent 039e90c9d3
commit 3b754e525f
No known key found for this signature in database
GPG key ID: C899ACE7E2322852

View file

@ -1,15 +1,15 @@
{ stdenv, fetchurl, boost, zlib, bzip2 }:
{ stdenv, fetchurl, boost, zlib, bzip2, wxGTK30 }:
stdenv.mkDerivation rec {
name = "xylib-${version}";
version = "1.4";
version = "1.5";
src = fetchurl {
url = "https://github.com/wojdyr/xylib/releases/download/v${version}/${name}-${version}.tar.bz2";
sha256 = "09j426qjbg3damch1hfw16j992kn2hj8gs4lpvqgfqdw61kvqivh";
url = "https://github.com/wojdyr/xylib/releases/download/v${version}/${name}.tar.bz2";
sha256 = "1r2kx80zhdvz39k6h2fsncm2742xxvxl3z8a3fnr13jl9sl7mnnd";
};
buildInputs = [ boost zlib bzip2 ];
buildInputs = [ boost zlib bzip2 wxGTK30 ];
meta = with stdenv.lib; {
description = "Portable library for reading files that contain x-y data from powder diffraction, spectroscopy and other experimental methods";