27 lines
686 B
Nix
27 lines
686 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, wxGTK30, boost, lua, zlib, bzip2
|
|
, xylib, readline, gnuplot, swig3 }:
|
|
|
|
let
|
|
name = "fityk";
|
|
version = "1.3.1";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "${name}-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wojdyr";
|
|
repo = "fityk";
|
|
rev = "v${version}";
|
|
sha256 = "0kmrjjjwrh6xgw590awcd52b86kksmv6rfgih75zvpiavr1ygwsi";
|
|
};
|
|
|
|
buildInputs = [ autoreconfHook wxGTK30 boost lua zlib bzip2 xylib readline
|
|
gnuplot swig3 ];
|
|
|
|
meta = {
|
|
description = "Curve fitting and peak fitting software";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
homepage = http://fityk.nieto.pl/;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|