nixpkgs/pkgs/applications/misc/wcalc/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

22 lines
517 B
Nix

{ lib, 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 lib; {
description = "Command line calculator";
homepage = "https://w-calc.sourceforge.net";
license = licenses.gpl2;
platforms = platforms.all;
mainProgram = "wcalc";
};
}