From 5e8e24e6babfc5db08a8dd158143ce46163180ff Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 23 Jul 2021 01:09:51 +0000 Subject: [PATCH 1/3] bemenu: 0.6.2 -> 0.6.3 (cherry picked from commit d10ccb2b339257bae7d44af7d024476ec46306e0) --- pkgs/applications/misc/bemenu/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/bemenu/default.nix b/pkgs/applications/misc/bemenu/default.nix index 371bb3a3ef9..123d839341d 100644 --- a/pkgs/applications/misc/bemenu/default.nix +++ b/pkgs/applications/misc/bemenu/default.nix @@ -11,13 +11,13 @@ assert x11Support -> xorg != null; stdenv.mkDerivation rec { pname = "bemenu"; - version = "0.6.2"; + version = "0.6.3"; src = fetchFromGitHub { owner = "Cloudef"; repo = pname; rev = version; - sha256 = "sha256-2xmi/Mh5iU50yc2R1x1yzP8Xaz+mUgLnH73tAeLwxI8="; + sha256 = "sha256-U4IMfDvQ0rfEJhE3Uext2c/Cs0mjy1tw+k8uk441Ag8="; }; nativeBuildInputs = [ pkg-config pcre ]; From 54ed4692931c3872c40ff39dae1d78764b55e699 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Tue, 20 Jul 2021 16:52:59 +0000 Subject: [PATCH 2/3] squashfs-tools-ng: 1.1.1 -> 1.1.2 tar2sqfs seems to work on the source tarball. (cherry picked from commit bbdf2e931a84b9d8a8a03ab508f42e9c2adabf55) --- pkgs/tools/filesystems/squashfs-tools-ng/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/squashfs-tools-ng/default.nix b/pkgs/tools/filesystems/squashfs-tools-ng/default.nix index d0ad7803c79..bc806888540 100644 --- a/pkgs/tools/filesystems/squashfs-tools-ng/default.nix +++ b/pkgs/tools/filesystems/squashfs-tools-ng/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { pname = "squashfs-tools-ng"; - version = "1.1.1"; + version = "1.1.2"; src = fetchurl { url = "https://infraroot.at/pub/squashfs/squashfs-tools-ng-${version}.tar.xz"; - sha256 = "07c8vpzgwvqr9ycww1769ya40cf077c6igdg1b4akwszz2nw0bxq"; + sha256 = "0hlrbiy8xmccczi11ml0lzmg3946l9ck5wpfyw03wn5zgvx29zja"; }; nativeBuildInputs = [ doxygen graphviz pkg-config perl ]; From 6a09c14a330ea43cbeb64cad5bd90937de663185 Mon Sep 17 00:00:00 2001 From: Valentin Conrad Date: Fri, 9 Jul 2021 10:50:25 +0200 Subject: [PATCH 3/3] nextcloud: remove expires header nextcloud default nginx config did not include the expires config see: https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html (cherry picked from commit ceef268c4b8cca80bd8c9b73bc2b323be13e0970) --- nixos/modules/services/web-apps/nextcloud.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/services/web-apps/nextcloud.nix b/nixos/modules/services/web-apps/nextcloud.nix index bb8ea5ab6e0..c4a31c481ae 100644 --- a/nixos/modules/services/web-apps/nextcloud.nix +++ b/nixos/modules/services/web-apps/nextcloud.nix @@ -701,7 +701,6 @@ in { }; extraConfig = '' index index.php index.html /index.php$request_uri; - expires 1m; add_header X-Content-Type-Options nosniff; add_header X-XSS-Protection "1; mode=block"; add_header X-Robots-Tag none;