1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 02:21:16 +02:00

Add a flake.nix

This commit is contained in:
Eelco Dolstra 2019-04-08 17:28:05 +02:00
parent 4023ae4cdf
commit a9ceeeb4b0
2 changed files with 19 additions and 1 deletions

18
flake.nix Normal file
View file

@ -0,0 +1,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;
};
}