about summary refs log tree commit diff
path: root/flake.nix
blob: 9f5434330aa2ebc6559aa995d355b56e6f027559 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  name = "nixpkgs";

  epoch = 2019;

  description = "A collection of packages for the Nix package manager";

  provides = flakes:
    let pkgs = import ./. {}; in
    {
      lib = import ./lib;

      builders = {
        inherit (pkgs) stdenv fetchurl;
      };

      packages = {
        inherit (pkgs) hello nix fuse nlohmann_json boost;
      };

      legacyPkgs = pkgs;
    };
}