about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAnthony Roussel <anthony@roussel.dev>2024-03-21 22:44:27 +0100
committerAnthony Roussel <anthony@roussel.dev>2024-03-22 13:09:13 +0100
commit4b042b57678a27708d152617f638c7aebec8a527 (patch)
tree88104a1bf413242997888981c6cbefdf3a053a04
parentd3e35ef7c8a5b8ac9d010fe4af727752b22e7283 (diff)
downloadnixlib-4b042b57678a27708d152617f638c7aebec8a527.tar
nixlib-4b042b57678a27708d152617f638c7aebec8a527.tar.gz
nixlib-4b042b57678a27708d152617f638c7aebec8a527.tar.bz2
nixlib-4b042b57678a27708d152617f638c7aebec8a527.tar.lz
nixlib-4b042b57678a27708d152617f638c7aebec8a527.tar.xz
nixlib-4b042b57678a27708d152617f638c7aebec8a527.tar.zst
nixlib-4b042b57678a27708d152617f638c7aebec8a527.zip
apacheHttpdPackages.mod_timestamp: 0.2.2 -> 0.2.3
https://redwax.eu/dist/rs/ChangeLog-mod_timestamp-0.2.3
-rw-r--r--pkgs/servers/http/apache-modules/mod_timestamp/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/servers/http/apache-modules/mod_timestamp/default.nix b/pkgs/servers/http/apache-modules/mod_timestamp/default.nix
index 1841cf8d369a..1dbe4101dfe6 100644
--- a/pkgs/servers/http/apache-modules/mod_timestamp/default.nix
+++ b/pkgs/servers/http/apache-modules/mod_timestamp/default.nix
@@ -11,11 +11,11 @@
 
 stdenv.mkDerivation rec {
   pname = "mod_timestamp";
-  version = "0.2.2";
+  version = "0.2.3";
 
   src = fetchurl {
     url = "https://redwax.eu/dist/rs/${pname}-${version}.tar.gz";
-    sha256 = "1p18mgxx2ainfrc2wm27rl3lh6yl0ihx6snib60jnp694587bfwg";
+    hash = "sha256-X49gJ1wQtwQT3GOZkluxdMIY2ZRpM9Y7DZln6Ag9DvM=";
   };
 
   nativeBuildInputs = [ pkg-config ];
@@ -26,6 +26,11 @@ stdenv.mkDerivation rec {
     mod_ca
   ];
 
+  env.NIX_CFLAGS_COMPILE = toString (lib.optionals stdenv.cc.isClang [
+    "-Wno-error=int-conversion"
+    "-Wno-error=implicit-function-declaration"
+  ]);
+
   inherit (mod_ca) configureFlags installFlags;
 
   passthru.updateScript = directoryListingUpdater {