bogofilter: 1.2.4 -> 1.2.5

This commit is contained in:
Nicolas Benes 2023-11-19 16:00:24 +01:00
parent 6dfcd5ea1a
commit 507cf99425

View file

@ -1,21 +1,31 @@
{fetchurl, lib, stdenv, flex, db}:
{ lib
, stdenv
, fetchurl
, flex
, db
, makeWrapper
, pax
}:
stdenv.mkDerivation rec {
pname = "bogofilter";
version = "1.2.4";
version = "1.2.5";
src = fetchurl {
url = "mirror://sourceforge/bogofilter/bogofilter-${version}.tar.bz2";
sha256 = "1d56n2m9inm8gnzm88aa27xl2a7sp7aff3484vmflpqkinjqf0p1";
url = "mirror://sourceforge/bogofilter/bogofilter-${version}.tar.xz";
hash = "sha256-MkihNzv/VSxQCDStvqS2yu4EIkUWrlgfslpMam3uieo=";
};
# FIXME: We would need `pax' as a "propagated build input" (for use
# by the `bf_tar' script) but we don't have it currently.
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ flex db ];
doCheck = false; # needs "y" tool
postInstall = ''
wrapProgram "$out/bin/bf_tar" --prefix PATH : "${lib.makeBinPath [ pax ]}"
'';
meta = {
homepage = "http://bogofilter.sourceforge.net/";
longDescription = ''