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