mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
24 lines
391 B
Nix
24 lines
391 B
Nix
|
{
|
||
|
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;
|
||
|
};
|
||
|
}
|