mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
21 lines
493 B
Nix
21 lines
493 B
Nix
{ stdenv, fetchurl, mpfr, readline }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wcalc";
|
|
version = "2.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/w-calc/${pname}-${version}.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;
|
|
};
|
|
}
|