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.

30 lines
718 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, wxGTK30, boost, lua, zlib, bzip2
2015-06-24 09:15:44 +00:00
, 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 ];
buildInputs = [ wxGTK30 boost lua zlib bzip2 xylib readline
2015-06-24 09:15:44 +00:00
gnuplot swig3 ];
NIX_CFLAGS_COMPILE = [
"-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;
};
}