blob: b119f0324adf6e5c215928d1fd85aaf81e60f361 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
name = "nix";
description = "The purely functional package manager";
requires = [ flake:nixpkgs ];
provides = flakes: rec {
hydraJobs = import ./release.nix {
nix = flakes.nix; # => flakes.self?
nixpkgs = flakes.nixpkgs;
};
packages.nix = hydraJobs.build.x86_64-linux;
};
}
|