summary refs log tree commit diff
path: root/pkgs/applications/misc/wcalc/default.nix
blob: 1c6dc8f63c23bd4f6fa2c5fc9750d1694cc4b6f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
  };
}