nixpkgs/pkgs/applications/science/misc/fityk/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
776 B
Nix
Raw Normal View History

2022-10-30 03:10:09 +00:00
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, wxGTK32
, boost
, lua
, zlib
, bzip2
, xylib
, readline
, gnuplot
, swig3
}:
2022-03-07 11:37:20 +00:00
stdenv.mkDerivation rec {
pname = "fityk";
2022-08-10 13:28:43 +00:00
version = "1.3.2";
2015-06-24 09:15:44 +00:00
src = fetchFromGitHub {
owner = "wojdyr";
repo = "fityk";
rev = "v${version}";
2022-08-10 13:28:43 +00:00
sha256 = "sha256-m2RaZMYT6JGwa3sOUVsBIzCdZetTbiygaInQWoJ4m1o=";
};
nativeBuildInputs = [ autoreconfHook ];
2022-10-30 03:10:09 +00:00
buildInputs = [
wxGTK32
boost
lua
zlib
bzip2
xylib
readline
gnuplot
swig3
];
env.NIX_CFLAGS_COMPILE = toString [
"-std=c++11"
];
meta = {
description = "Curve fitting and peak fitting software";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2;
homepage = "https://fityk.nieto.pl/";
2021-01-15 13:21:58 +00:00
platforms = lib.platforms.linux;
};
}