1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00
nix/flake.nix

22 lines
341 B
Nix
Raw Normal View History

2019-04-08 11:28:05 -04:00
{
name = "nix";
description = "The purely functional package manager";
2019-04-16 10:29:44 -04:00
epoch = 2019;
2019-04-08 11:28:05 -04:00
2019-04-16 10:29:44 -04:00
requires = [ "nixpkgs" ];
provides = deps: rec {
2019-04-08 11:28:05 -04:00
hydraJobs = import ./release.nix {
2019-04-16 10:29:44 -04:00
nix = deps.self;
nixpkgs = deps.nixpkgs;
2019-04-08 11:28:05 -04:00
};
packages.nix = hydraJobs.build.x86_64-linux;
defaultPackage = packages.nix;
2019-04-08 11:28:05 -04:00
};
}