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
719 B
Nix
Raw Normal View History

2021-01-15 14:21:58 +01:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, wxGTK30, boost, lua, zlib, bzip2
2015-06-24 11:15:44 +02:00
, xylib, readline, gnuplot, swig3 }:
2022-03-07 12:37:20 +01:00
stdenv.mkDerivation rec {
pname = "fityk";
2017-01-01 18:19:02 +01:00
version = "1.3.1";
2015-06-24 11:15:44 +02:00
src = fetchFromGitHub {
owner = "wojdyr";
repo = "fityk";
rev = "v${version}";
2017-01-01 18:19:02 +01:00
sha256 = "0kmrjjjwrh6xgw590awcd52b86kksmv6rfgih75zvpiavr1ygwsi";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ wxGTK30 boost lua zlib bzip2 xylib readline
2015-06-24 11:15:44 +02:00
gnuplot swig3 ];
NIX_CFLAGS_COMPILE = [
"-std=c++11"
];
meta = {
description = "Curve fitting and peak fitting software";
2021-01-15 14:21:58 +01:00
license = lib.licenses.gpl2;
homepage = "https://fityk.nieto.pl/";
2021-01-15 14:21:58 +01:00
platforms = lib.platforms.linux;
};
}