nixpkgs/flake.nix

30 lines
615 B
Nix
Raw Normal View History

2019-02-11 04:27:17 -07:00
{
name = "nixpkgs";
2019-06-03 13:26:40 -06:00
epoch = 201906;
2019-02-11 04:27:17 -07:00
description = "A collection of packages for the Nix package manager";
2019-05-29 15:03:16 -06:00
outputs = inputs:
let pkgs = import ./. { system = "x86_64-linux"; }; in
2019-02-11 04:27:17 -07:00
{
lib = (import ./lib) // {
nixosSystem = import ./nixos/lib/eval-config.nix;
};
2019-02-11 04:27:17 -07:00
2019-05-29 13:21:56 -06:00
checks.tarball = (import ./pkgs/top-level/release.nix {
2019-05-29 15:03:16 -06:00
nixpkgs = inputs.self;
2019-05-29 13:21:56 -06:00
}).tarball;
2019-02-11 04:27:17 -07:00
builders = {
inherit (pkgs) stdenv fetchurl;
};
packages = {
2019-05-29 13:11:22 -06:00
inherit (pkgs) hello nix fuse nlohmann_json boost firefox;
2019-02-11 04:27:17 -07:00
};
2019-05-29 13:11:22 -06:00
legacyPackages = pkgs;
2019-02-11 04:27:17 -07:00
};
}