Unverified Commit 0e018dfe authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

petidomo: unbreak on gcc 14, modernize (#396076)

parents 498ba051 958dbdf1
Loading
Loading
Loading
Loading
+11 −4
Original line number Diff line number Diff line
@@ -5,15 +5,16 @@
  flex,
  bison,
  sendmailPath ? "/run/wrappers/bin/sendmail",
  versionCheckHook,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "petidomo";
  version = "4.3";

  src = fetchurl {
    url = "mirror://sourceforge/petidomo/${pname}-${version}.tar.gz";
    sha256 = "0x4dbxc4fcfg1rw5ywpcypvylnzn3y4rh0m6fz4h4cdnzb8p1lvm";
    url = "mirror://sourceforge/petidomo/petidomo-${finalAttrs.version}.tar.gz";
    hash = "sha256-ddNw0fq2MQLJd6YCmIkf9lvq9/Xscl94Ds8xR1hfjXQ=";
  };

  buildInputs = [
@@ -23,10 +24,16 @@ stdenv.mkDerivation rec {

  configureFlags = [ "--with-mta=${sendmailPath}" ];

  # test.c:43:11: error: implicit declaration of function 'gets'; did you mean 'fgets'?
  env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";

  enableParallelBuilding = true;

  doCheck = true;

  doInstallCheck = true;
  nativeInstallCheck = [ versionCheckHook ];

  meta = {
    homepage = "https://petidomo.sourceforge.net/";
    description = "Simple and easy to administer mailing list server";
@@ -35,4 +42,4 @@ stdenv.mkDerivation rec {
    platforms = lib.platforms.unix;
    maintainers = [ lib.maintainers.peti ];
  };
}
})