10.DistroPkg

If pkg is available in distro's repositories (TYPE: NON_ENFORCED)

#Example ONLY
distro_pkg:
 #Not ALL fileds are necessary, they can be left empty or deleted
  #suggests alpine has it (Condense, all alpine repo/version packages into alpine)
  alpine:
    - "mypkg"
  #suggests archlinux has it
  archlinux:
    #suggests aur has it
    aur:
      - "mypkg-bin"
      - "mypkg-git"
    #suggest extra has it  
    extra:
      - "mypkg"
    #suggest multilib has it      
    multilib:
      - "mypkg"      
  #suggests debian has it (Condense, all debian repo/version packages into debian)   
  debian:
    - "mypkg"
  #suggests nixpkg has it (Condense, all nixpkg repo/version packages into nixpkg)
  nixpkgs:
    - "mypkg"

Last updated

Was this helpful?