wcalc: init at 2.5

This commit is contained in:
Igor Sharonov
2015-10-12 23:07:45 +03:00
parent 5ea6330f77
commit d1b085549f
2 changed files with 22 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{ stdenv, fetchurl, mpfr, readline }:
stdenv.mkDerivation rec {
name = "wcalc-${version}";
version = "2.5";
src = fetchurl {
url = "mirror://sourceforge/w-calc/${name}.tar.bz2";
sha256 = "1vi8dl6rccqiq1apmpwawyg2ywx6a1ic1d3cvkf2hlwk1z11fb0f";
};
buildInputs = [ mpfr readline ];
meta = with stdenv.lib; {
description = "A command line calculator";
homepage = http://w-calc.sourceforge.net;
license = licenses.gpl2;
platforms = platforms.all;
};
}