1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 02:59:10 -04:00
nixpkgs/flake.nix

24 lines
391 B
Nix
Raw Normal View History

2019-02-11 06:27:17 -05:00
{
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;
};
}