mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
Merge pull request #3582 from ts468/fityk
Add application for scientific data analysis: fityk
This commit is contained in:
commit
ec6e7d0eb3
23
pkgs/applications/science/misc/fityk/default.nix
Normal file
23
pkgs/applications/science/misc/fityk/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl, wxGTK30, boost, lua, zlib, bzip2, xylib, readline, gnuplot }:
|
||||
|
||||
let
|
||||
name = "fityk";
|
||||
version = "1.2.9";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "${name}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/wojdyr/fityk/releases/download/v${version}/${name}-${version}.tar.bz2";
|
||||
sha256 = "1gl938nd2jyya8b3gzbagm1jab2mkc9zvr6zsg5d0vkfdqlk0pv1";
|
||||
};
|
||||
|
||||
buildInputs = [wxGTK30 boost lua zlib bzip2 xylib readline gnuplot ];
|
||||
|
||||
meta = {
|
||||
description = "Fityk -- curve fitting and peak fitting software";
|
||||
license = "GPL2";
|
||||
homepage = http://fityk.nieto.pl/;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -10999,6 +10999,8 @@ let
|
||||
inherit (pkgs.gnome) gtkglext;
|
||||
};
|
||||
|
||||
fityk = callPackage ../applications/science/misc/fityk { };
|
||||
|
||||
gravit = callPackage ../applications/science/astronomy/gravit { };
|
||||
|
||||
golly = callPackage ../applications/science/misc/golly { };
|
||||
|
Loading…
Reference in New Issue
Block a user