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.
 
 
 
 
 
 

30 lines
615 B

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