forked from mirrors/nixpkgs
007f80c1d0
Should eval cleanly, as far as -A tarball tells me. Relevant: issue #2999, issue #739
24 lines
657 B
Nix
24 lines
657 B
Nix
{ 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 = "Curve fitting and peak fitting software";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
homepage = http://fityk.nieto.pl/;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|