Philip Taron 22b88ba79d
treewide: adjust meta descriptions to avoid definite or indefinite articles
This patch was produced in Vim by me, a human being. All errors are the fault of the operator. I did try to be careful.

Co-authored-by: Peder Bergebakken Sundt <pbsds@hotmail.com>
Co-authored-by: dotlambda <nix@dotlambda.de>
2025-06-05 11:04:25 -07:00

53 lines
988 B
Nix

{
lib,
stdenvNoCC,
fetchurl,
autoPatchelfHook,
curl,
gfortran,
zlib,
}:
stdenvNoCC.mkDerivation {
pname = "paup-cli";
version = "4.0a168";
src = fetchurl {
url = "http://phylosolutions.com/paup-test/paup4a168_centos64.gz";
hash = "sha256-41dZswlrIQ05f1zJzId78DKmPf0QH1SfrexzvCAUxq8=";
};
unpackPhase = ''
runHook preUnpack
gunzip -c $src > paup
runHook postUnpack
'';
nativeBuildInputs = [ autoPatchelfHook ];
buildInputs = [
curl
gfortran
zlib
];
installPhase = ''
runHook preInstall
install -Dm755 paup -t $out/bin
runHook postInstall
'';
meta = {
description = "Software package for inferring evolutionary trees";
homepage = "http://phylosolutions.com/paup-test/";
license = lib.licenses.unfree;
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
maintainers = with lib.maintainers; [ pandapip1 ];
mainProgram = "paup";
platforms = [ "x86_64-linux" ];
};
}