2015-06-24 02:15:44 -07:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, wxGTK30, boost, lua, zlib, bzip2
|
|
|
|
, xylib, readline, gnuplot, swig3 }:
|
2014-08-13 16:52:06 -07:00
|
|
|
|
|
|
|
let
|
|
|
|
name = "fityk";
|
2017-01-01 09:19:02 -08:00
|
|
|
version = "1.3.1";
|
2014-08-13 16:52:06 -07:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "${name}-${version}";
|
|
|
|
|
2015-06-24 02:15:44 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wojdyr";
|
|
|
|
repo = "fityk";
|
|
|
|
rev = "v${version}";
|
2017-01-01 09:19:02 -08:00
|
|
|
sha256 = "0kmrjjjwrh6xgw590awcd52b86kksmv6rfgih75zvpiavr1ygwsi";
|
2014-08-13 16:52:06 -07:00
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ wxGTK30 boost lua zlib bzip2 xylib readline
|
2015-06-24 02:15:44 -07:00
|
|
|
gnuplot swig3 ];
|
2014-08-13 16:52:06 -07:00
|
|
|
|
|
|
|
meta = {
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "Curve fitting and peak fitting software";
|
2014-11-05 16:44:33 -08:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://fityk.nieto.pl/";
|
2014-08-13 16:52:06 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|