File tree Expand file tree Collapse file tree
applications/editors/vim/plugins
so/sonar-scanner-cli-minimal Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ lib.genAttrs cocPackages (
5959 inherit ( cocPkg ) pname version ;
6060 meta = cocPkg . meta // {
6161 # TODO: Why?
62+ hasNoMaintainersButDependents = false ;
6263 requiresMaintainers = false ;
6364 } ;
6465 src = "${ cocPkg } /lib/node_modules/${ cocPkg . pname } " ;
@@ -69,6 +70,7 @@ lib.genAttrs cocPackages (
6970 inherit ( coc-nginx ) pname version ;
7071 meta = coc-nginx . meta // {
7172 # TODO: Why?
73+ hasNoMaintainersButDependents = false ;
7274 requiresMaintainers = false ;
7375 } ;
7476 src = "${ coc-nginx } /lib/node_modules/@yaegassy/coc-nginx" ;
Original file line number Diff line number Diff line change @@ -150,6 +150,7 @@ stdenv.mkDerivation (finalAttrs: {
150150 meta =
151151 finalAttrs . finalPackage . meta
152152 // {
153+ hasNoMaintainersButDependents = false ;
153154 license = lib . licenses . free ;
154155 mainProgram = "alephone" ;
155156 hydraPlatforms = [ ] ;
Original file line number Diff line number Diff line change @@ -10,4 +10,7 @@ bossa.overrideAttrs (attrs: rec {
1010 tag = version ;
1111 sha256 = "sha256-sBJ6QMd7cTClDnGCeOU0FT6IczEjqqRxCD7kef5GuY8=" ;
1212 } ;
13+ meta = attrs . meta // {
14+ hasNoMaintainersButDependents = false ;
15+ } ;
1316} )
Original file line number Diff line number Diff line change 11{
22 lib ,
33 cocoapods ,
4+ noMaintainersNorDependents ,
45} :
56
67lib . lowPrio (
7- cocoapods . override {
8- beta = true ;
9- }
8+ noMaintainersNorDependents (
9+ cocoapods . override {
10+ beta = true ;
11+ }
12+ )
1013)
Original file line number Diff line number Diff line change 11{
22 gnuplot ,
3+ noMaintainersNorDependents ,
34} :
45
5- gnuplot . override {
6- aquaterm = true ;
7- }
6+ noMaintainersNorDependents (
7+ gnuplot . override {
8+ aquaterm = true ;
9+ }
10+ )
Original file line number Diff line number Diff line change 11{
22 grub2 ,
3+ noMaintainersNorDependents ,
34 ...
45} @args :
56
6- grub2 . override (
7- {
8- ieee1275Support = true ;
9- }
10- // removeAttrs args [ "grub2" ]
7+ noMaintainersNorDependents (
8+ grub2 . override (
9+ {
10+ ieee1275Support = true ;
11+ }
12+ // removeAttrs args [
13+ "grub2"
14+ "noMaintainersNorDependents"
15+ ]
16+ )
1117)
Original file line number Diff line number Diff line change 11{
22 kid3 ,
3+ noMaintainersNorDependents ,
34} :
4-
5- kid3 . override {
6- withCLI = true ;
7- withKDE = true ;
8- withQt = false ;
9- }
5+ noMaintainersNorDependents (
6+ kid3 . override {
7+ withCLI = true ;
8+ withKDE = true ;
9+ withQt = false ;
10+ }
11+ )
Original file line number Diff line number Diff line change @@ -91,5 +91,6 @@ stdenv.mkDerivation {
9191 You can simply override libpulse with this and most
9292 packages would just work.
9393 '' ;
94+ hasNoMaintainersButDependents = false ;
9495 } ;
9596}
Original file line number Diff line number Diff line change @@ -33,5 +33,9 @@ py.toPythonApplication (
3333 cp ${ gunicornScript } $gpath
3434 chmod 555 $gpath
3535 '' ;
36+
37+ meta = old . meta // {
38+ hasNoMaintainersButDependents = false ;
39+ } ;
3640 } )
3741)
Original file line number Diff line number Diff line change 11{
22 rsyslog ,
3+ noMaintainersNorDependents ,
34} :
45
5- rsyslog . override {
6- withKrb5 = false ;
7- withSystemd = false ;
8- withJemalloc = false ;
9- withMysql = false ;
10- withPostgres = false ;
11- withDbi = false ;
12- withNetSnmp = false ;
13- withUuid = false ;
14- withCurl = false ;
15- withGnutls = false ;
16- withGcrypt = false ;
17- withLognorm = false ;
18- withMaxminddb = false ;
19- withOpenssl = false ;
20- withRelp = false ;
21- withKsi = false ;
22- withLogging = false ;
23- withNet = false ;
24- withHadoop = false ;
25- withRdkafka = false ;
26- withMongo = false ;
27- withCzmq = false ;
28- withRabbitmq = false ;
29- withHiredis = false ;
30- }
6+ noMaintainersNorDependents (
7+ rsyslog . override {
8+ withKrb5 = false ;
9+ withSystemd = false ;
10+ withJemalloc = false ;
11+ withMysql = false ;
12+ withPostgres = false ;
13+ withDbi = false ;
14+ withNetSnmp = false ;
15+ withUuid = false ;
16+ withCurl = false ;
17+ withGnutls = false ;
18+ withGcrypt = false ;
19+ withLognorm = false ;
20+ withMaxminddb = false ;
21+ withOpenssl = false ;
22+ withRelp = false ;
23+ withKsi = false ;
24+ withLogging = false ;
25+ withNet = false ;
26+ withHadoop = false ;
27+ withRdkafka = false ;
28+ withMongo = false ;
29+ withCzmq = false ;
30+ withRabbitmq = false ;
31+ withHiredis = false ;
32+ }
33+ )
You can’t perform that action at this time.
0 commit comments