File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -314,6 +314,7 @@ stdenv.mkDerivation {
314314 mainProgram = "nginx" ;
315315 homepage = "http://nginx.org" ;
316316 license = [ licenses . bsd2 ] ++ concatMap ( m : m . meta . license ) modules ;
317+ broken = lib . any ( m : m . meta . broken or false ) modules ;
317318 platforms = platforms . all ;
318319 maintainers =
319320 with maintainers ;
Original file line number Diff line number Diff line change 44, fetchFromGitLab
55, fetchhg
66, runCommand
7+ , stdenv
78
89, arpa2common
910, brotli
@@ -1020,6 +1021,25 @@ let self = {
10201021 } ;
10211022 } ;
10221023
1024+ zip = {
1025+ name = "zip" ;
1026+ src = fetchFromGitHub {
1027+ name = "zip" ;
1028+ owner = "evanmiller" ;
1029+ repo = "mod_zip" ;
1030+ rev = "8e65b82c82c7890f67a6107271c127e9881b6313" ;
1031+ hash = "sha256-2bUyGsLSaomzaijnAcHQV9TNSuV7Z3G9EUbrZzLG+mk=" ;
1032+ } ;
1033+
1034+ meta = with lib ; {
1035+ description = "Streaming ZIP archiver for nginx" ;
1036+ homepage = "https://github.com/evanmiller/mod_zip" ;
1037+ license = with licenses ; [ bsd3 ] ;
1038+ broken = stdenv . hostPlatform . isDarwin ;
1039+ maintainers = teams . apm . members ;
1040+ } ;
1041+ } ;
1042+
10231043 zstd = {
10241044 name = "zstd" ;
10251045 src = fetchFromGitHub {
You can’t perform that action at this time.
0 commit comments