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
@@ -1019,6 +1020,25 @@ let self = {
10191020 } ;
10201021 } ;
10211022
1023+ zip = {
1024+ name = "zip" ;
1025+ src = fetchFromGitHub {
1026+ name = "zip" ;
1027+ owner = "evanmiller" ;
1028+ repo = "mod_zip" ;
1029+ rev = "8e65b82c82c7890f67a6107271c127e9881b6313" ;
1030+ hash = "sha256-2bUyGsLSaomzaijnAcHQV9TNSuV7Z3G9EUbrZzLG+mk=" ;
1031+ } ;
1032+
1033+ meta = with lib ; {
1034+ description = "Streaming ZIP archiver for nginx" ;
1035+ homepage = "https://github.com/evanmiller/mod_zip" ;
1036+ license = with licenses ; [ bsd3 ] ;
1037+ broken = stdenv . hostPlatform . isDarwin ;
1038+ maintainers = teams . apm . members ;
1039+ } ;
1040+ } ;
1041+
10221042 zstd = {
10231043 name = "zstd" ;
10241044 src = fetchFromGitHub {
You can’t perform that action at this time.
0 commit comments