You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

40 lines
837 B

  1. {
  2. name = "nixpkgs";
  3. epoch = 201906;
  4. description = "A collection of packages for the Nix package manager";
  5. outputs = inputs:
  6. let
  7. pkgs = import ./. { system = "x86_64-linux"; };
  8. jobs = import ./pkgs/top-level/release.nix {
  9. nixpkgs = inputs.self;
  10. };
  11. in
  12. {
  13. lib = (import ./lib) // {
  14. nixosSystem = import ./nixos/lib/eval-config.nix;
  15. };
  16. checks.tarball = jobs.tarball;
  17. builders = {
  18. inherit (pkgs) stdenv fetchurl;
  19. };
  20. htmlDocs = {
  21. nixpkgsManual = jobs.manual;
  22. nixosManual = (import ./nixos/release-small.nix {
  23. nixpkgs = inputs.self;
  24. }).nixos.manual.x86_64-linux;
  25. };
  26. packages = {
  27. inherit (pkgs) hello nix fuse nlohmann_json boost firefox;
  28. };
  29. legacyPackages = pkgs;
  30. };
  31. }