fityk: update 1.2.9 to 1.3.0

This commit is contained in:
Pascal Wittmann 2015-06-24 11:15:44 +02:00
parent 1776016bf7
commit cf13409313

View File

@ -1,18 +1,22 @@
{ stdenv, fetchurl, wxGTK30, boost, lua, zlib, bzip2, xylib, readline, gnuplot }: { stdenv, fetchFromGitHub, autoreconfHook, wxGTK30, boost, lua, zlib, bzip2
, xylib, readline, gnuplot, swig3 }:
let let
name = "fityk"; name = "fityk";
version = "1.2.9"; version = "1.3.0";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "${name}-${version}"; name = "${name}-${version}";
src = fetchurl { src = fetchFromGitHub {
url = "https://github.com/wojdyr/fityk/releases/download/v${version}/${name}-${version}.tar.bz2"; owner = "wojdyr";
sha256 = "1gl938nd2jyya8b3gzbagm1jab2mkc9zvr6zsg5d0vkfdqlk0pv1"; repo = "fityk";
rev = "v${version}";
sha256 = "07xzhy47q5ddg1qn51qds4wp6r5g2cx8bla0hm0a9ipr2hg92lm9";
}; };
buildInputs = [wxGTK30 boost lua zlib bzip2 xylib readline gnuplot ]; buildInputs = [ autoreconfHook wxGTK30 boost lua zlib bzip2 xylib readline
gnuplot swig3 ];
meta = { meta = {
description = "Curve fitting and peak fitting software"; description = "Curve fitting and peak fitting software";