Merge pull request #3580 from ts468/lib-xylib

Add library: xylib
This commit is contained in:
Peter Simons 2014-08-14 13:57:34 +02:00
commit d65256d495
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchurl, boost, zlib, bzip2 }:
let
name = "xylib";
version = "1.3";
in
stdenv.mkDerivation {
name = "${name}-${version}";
src = fetchurl {
url = "https://github.com/wojdyr/xylib/releases/download/v${version}/${name}-${version}.tar.bz2";
sha256 = "09j426qjbg3damch1hfw16j992kn2hj8gs4lpvqgfqdw61kvqivh";
};
buildInputs = [boost zlib bzip2 ];
meta = {
description = "xylib is a portable library for reading files that contain x-y data from powder diffraction, spectroscopy and other experimental methods.";
license = "LGPL";
homepage = http://xylib.sourceforge.net/;
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -6414,6 +6414,8 @@ let
xvidcore = callPackage ../development/libraries/xvidcore { };
xylib = callPackage ../development/libraries/xylib { };
yajl = callPackage ../development/libraries/yajl { };
zangband = builderDefsPackage (import ../games/zangband) {