xylib: 1.3 -> 1.4
This commit is contained in:
@@ -1,23 +1,21 @@
|
|||||||
{ stdenv, fetchurl, boost, zlib, bzip2 }:
|
{ stdenv, fetchurl, boost, zlib, bzip2 }:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
name = "xylib";
|
name = "xylib-${version}";
|
||||||
version = "1.3";
|
version = "1.4";
|
||||||
in
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "${name}-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/wojdyr/xylib/releases/download/v${version}/${name}-${version}.tar.bz2";
|
url = "https://github.com/wojdyr/xylib/releases/download/v${version}/${name}-${version}.tar.bz2";
|
||||||
sha256 = "09j426qjbg3damch1hfw16j992kn2hj8gs4lpvqgfqdw61kvqivh";
|
sha256 = "09j426qjbg3damch1hfw16j992kn2hj8gs4lpvqgfqdw61kvqivh";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [boost zlib bzip2 ];
|
buildInputs = [ boost zlib bzip2 ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Portable library for reading files that contain x-y data from powder diffraction, spectroscopy and other experimental methods";
|
description = "Portable library for reading files that contain x-y data from powder diffraction, spectroscopy and other experimental methods";
|
||||||
license = "LGPL";
|
license = licenses.lgpl21;
|
||||||
homepage = http://xylib.sourceforge.net/;
|
homepage = http://xylib.sourceforge.net/;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ pSub ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user