libqalculate: 2.5.0 -> 2.6.0b

This commit is contained in:
Gabriel Ebner 2018-07-05 12:33:11 +02:00
parent 16c6899a51
commit 76786a721a

View File

@ -1,13 +1,15 @@
{ stdenv, fetchurl, mpfr, libxml2, intltool, pkgconfig, doxygen, { stdenv, fetchFromGitHub, mpfr, libxml2, intltool, pkgconfig, doxygen,
autoreconfHook, readline, libiconv, icu, curl, gnuplot, gettext }: autoreconfHook, readline, libiconv, icu, curl, gnuplot, gettext }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libqalculate-${version}"; name = "libqalculate-${version}";
version = "2.5.0"; version = "2.6.0b";
src = fetchurl { src = fetchFromGitHub {
url = "https://github.com/Qalculate/libqalculate/archive/v${version}.tar.gz"; owner = "qalculate";
sha256 = "0xs2qjr93k43p6j126xj20fgb1n2jv56rhgc211yv1l46crbqxfv"; repo = "libqalculate";
rev = "v${version}";
sha256 = "1g0pmf33vrjabxmx6lyysgkxa6hg8qmwk0n5ncl4pr8sdkimswxw";
}; };
outputs = [ "out" "dev" "doc" ]; outputs = [ "out" "dev" "doc" ];