nixpkgs/flake.nix
Eelco Dolstra 123dea9b0d flake.nix: Set system explicitly for now
Flakes now are evaluated in pure mode, so we can't rely on
currentSystem anymore.
2020-02-05 23:14:32 +01:00

24 lines
417 B
Nix

{
name = "nixpkgs";
epoch = 2019;
description = "A collection of packages for the Nix package manager";
provides = flakes:
let pkgs = import ./. { system = "x86_64-linux"; }; in
{
lib = import ./lib;
builders = {
inherit (pkgs) stdenv fetchurl;
};
packages = {
inherit (pkgs) hello nix fuse nlohmann_json boost;
};
legacyPkgs = pkgs;
};
}