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

30 lines
614 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 ./. { system = "x86_64-linux"; }; in
2019-02-11 06:27:17 -05:00
{
lib = (import ./lib) // {
nixosSystem = import ./nixos/lib/eval-config.nix;
};
2019-02-11 06:27:17 -05:00
2019-05-29 15:21:56 -04:00
checks.tarball = (import ./pkgs/top-level/release.nix {
nixpkgs = flakes.self;
}).tarball;
2019-02-11 06:27:17 -05:00
builders = {
inherit (pkgs) stdenv fetchurl;
};
packages = {
2019-05-29 15:11:22 -04:00
inherit (pkgs) hello nix fuse nlohmann_json boost firefox;
2019-02-11 06:27:17 -05:00
};
2019-05-29 15:11:22 -04:00
legacyPackages = pkgs;
2019-02-11 06:27:17 -05:00
};
}