2019-06-04 20:45:16 +03:00
|
|
|
#pragma once
|
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
#include "types.hh"
|
|
|
|
#include "flakeref.hh"
|
2019-06-04 21:01:21 +03:00
|
|
|
#include "lockfile.hh"
|
2019-02-12 19:23:11 +02:00
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2019-05-29 16:31:07 +03:00
|
|
|
struct Value;
|
|
|
|
class EvalState;
|
|
|
|
|
2020-01-21 17:27:53 +02:00
|
|
|
namespace fetchers { struct Tree; }
|
2019-05-21 15:55:43 +03:00
|
|
|
|
2020-01-21 17:27:53 +02:00
|
|
|
namespace flake {
|
2019-03-10 08:05:05 +02:00
|
|
|
|
2020-01-24 14:07:03 +02:00
|
|
|
enum LockFileMode : unsigned int
|
2019-05-14 12:34:45 +03:00
|
|
|
{ AllPure // Everything is handled 100% purely
|
|
|
|
, TopRefUsesRegistries // The top FlakeRef uses the registries, apart from that, everything happens 100% purely
|
|
|
|
, UpdateLockFile // Update the existing lockfile and write it to file
|
|
|
|
, UseUpdatedLockFile // `UpdateLockFile` without writing to file
|
|
|
|
, RecreateLockFile // Recreate the lockfile from scratch and write it to file
|
|
|
|
, UseNewLockFile // `RecreateLockFile` without writing to file
|
|
|
|
};
|
2019-04-16 16:02:02 +03:00
|
|
|
|
Respect lock files of inputs + fine-grained lock file control
When computing a lock file, we now respect the lock files of flake
inputs. This is important for usability / reproducibility. For
example, the 'nixops' flake depends on the 'nixops-aws' and
'nixops-hetzner' repositories. So when the 'nixops' flake is used in
another flake, we want the versions of 'nixops-aws' and
'nixops-hetzner' locked by the the 'nixops' flake because those
presumably have been tested.
This can lead to a proliferation of versions of flakes like 'nixpkgs'
(since every flake's lock file could depend on a different version of
'nixpkgs'). This is not a major issue when using Nixpkgs overlays or
NixOS modules, since then the top-level flake composes those
overlays/modules into *its* version of Nixpkgs and all other versions
are ignored. Lock file computation has been made a bit more lazy so it
won't try to fetch all those versions of 'nixpkgs'.
However, in case it's necessary to minimize flake versions, there now
are two input attributes that allow this. First, you can copy an input
from another flake, as follows:
inputs.nixpkgs.follows = "dwarffs/nixpkgs";
This states that the calling flake's 'nixpkgs' input shall be the same
as the 'nixpkgs' input of the 'dwarffs' input.
Second, you can override inputs of inputs:
inputs.nixpkgs.url = github:edolstra/nixpkgs/<hash>;
inputs.nixops.inputs.nixpkgs.url = github:edolstra/nixpkgs/<hash>;
or equivalently, using 'follows':
inputs.nixpkgs.url = github:edolstra/nixpkgs/<hash>;
inputs.nixops.inputs.nixpkgs.follows = "nixpkgs";
This states that the 'nixpkgs' input of the 'nixops' input shall be
the same as the calling flake's 'nixpkgs' input.
Finally, at '-v' Nix now prints the changes to the lock file, e.g.
$ nix flake update ~/Misc/eelco-configurations/hagbard
inputs of flake 'git+file:///home/eelco/Misc/eelco-configurations?subdir=hagbard' changed:
updated 'nixpkgs': 'github:edolstra/nixpkgs/7845bf5f4b3013df1cf036e9c9c3a55a30331db9' -> 'github:edolstra/nixpkgs/03f3def66a104a221aac8b751eeb7075374848fd'
removed 'nixops'
removed 'nixops/nixops-aws'
removed 'nixops/nixops-hetzner'
removed 'nixops/nixpkgs'
2020-01-24 23:05:11 +02:00
|
|
|
struct FlakeInput;
|
|
|
|
|
|
|
|
typedef std::map<FlakeId, FlakeInput> FlakeInputs;
|
|
|
|
|
2019-08-30 17:27:51 +03:00
|
|
|
struct FlakeInput
|
|
|
|
{
|
|
|
|
FlakeRef ref;
|
|
|
|
bool isFlake = true;
|
Respect lock files of inputs + fine-grained lock file control
When computing a lock file, we now respect the lock files of flake
inputs. This is important for usability / reproducibility. For
example, the 'nixops' flake depends on the 'nixops-aws' and
'nixops-hetzner' repositories. So when the 'nixops' flake is used in
another flake, we want the versions of 'nixops-aws' and
'nixops-hetzner' locked by the the 'nixops' flake because those
presumably have been tested.
This can lead to a proliferation of versions of flakes like 'nixpkgs'
(since every flake's lock file could depend on a different version of
'nixpkgs'). This is not a major issue when using Nixpkgs overlays or
NixOS modules, since then the top-level flake composes those
overlays/modules into *its* version of Nixpkgs and all other versions
are ignored. Lock file computation has been made a bit more lazy so it
won't try to fetch all those versions of 'nixpkgs'.
However, in case it's necessary to minimize flake versions, there now
are two input attributes that allow this. First, you can copy an input
from another flake, as follows:
inputs.nixpkgs.follows = "dwarffs/nixpkgs";
This states that the calling flake's 'nixpkgs' input shall be the same
as the 'nixpkgs' input of the 'dwarffs' input.
Second, you can override inputs of inputs:
inputs.nixpkgs.url = github:edolstra/nixpkgs/<hash>;
inputs.nixops.inputs.nixpkgs.url = github:edolstra/nixpkgs/<hash>;
or equivalently, using 'follows':
inputs.nixpkgs.url = github:edolstra/nixpkgs/<hash>;
inputs.nixops.inputs.nixpkgs.follows = "nixpkgs";
This states that the 'nixpkgs' input of the 'nixops' input shall be
the same as the calling flake's 'nixpkgs' input.
Finally, at '-v' Nix now prints the changes to the lock file, e.g.
$ nix flake update ~/Misc/eelco-configurations/hagbard
inputs of flake 'git+file:///home/eelco/Misc/eelco-configurations?subdir=hagbard' changed:
updated 'nixpkgs': 'github:edolstra/nixpkgs/7845bf5f4b3013df1cf036e9c9c3a55a30331db9' -> 'github:edolstra/nixpkgs/03f3def66a104a221aac8b751eeb7075374848fd'
removed 'nixops'
removed 'nixops/nixops-aws'
removed 'nixops/nixops-hetzner'
removed 'nixops/nixpkgs'
2020-01-24 23:05:11 +02:00
|
|
|
std::optional<InputPath> follows;
|
|
|
|
FlakeInputs overrides;
|
2019-08-30 17:27:51 +03:00
|
|
|
};
|
|
|
|
|
2019-02-21 07:53:01 +02:00
|
|
|
struct Flake
|
|
|
|
{
|
2019-05-01 12:38:48 +03:00
|
|
|
FlakeRef originalRef;
|
2020-01-21 17:27:53 +02:00
|
|
|
FlakeRef resolvedRef;
|
2020-01-22 18:20:21 +02:00
|
|
|
std::optional<std::string> description;
|
2020-01-21 17:27:53 +02:00
|
|
|
std::shared_ptr<const fetchers::Tree> sourceInfo;
|
Respect lock files of inputs + fine-grained lock file control
When computing a lock file, we now respect the lock files of flake
inputs. This is important for usability / reproducibility. For
example, the 'nixops' flake depends on the 'nixops-aws' and
'nixops-hetzner' repositories. So when the 'nixops' flake is used in
another flake, we want the versions of 'nixops-aws' and
'nixops-hetzner' locked by the the 'nixops' flake because those
presumably have been tested.
This can lead to a proliferation of versions of flakes like 'nixpkgs'
(since every flake's lock file could depend on a different version of
'nixpkgs'). This is not a major issue when using Nixpkgs overlays or
NixOS modules, since then the top-level flake composes those
overlays/modules into *its* version of Nixpkgs and all other versions
are ignored. Lock file computation has been made a bit more lazy so it
won't try to fetch all those versions of 'nixpkgs'.
However, in case it's necessary to minimize flake versions, there now
are two input attributes that allow this. First, you can copy an input
from another flake, as follows:
inputs.nixpkgs.follows = "dwarffs/nixpkgs";
This states that the calling flake's 'nixpkgs' input shall be the same
as the 'nixpkgs' input of the 'dwarffs' input.
Second, you can override inputs of inputs:
inputs.nixpkgs.url = github:edolstra/nixpkgs/<hash>;
inputs.nixops.inputs.nixpkgs.url = github:edolstra/nixpkgs/<hash>;
or equivalently, using 'follows':
inputs.nixpkgs.url = github:edolstra/nixpkgs/<hash>;
inputs.nixops.inputs.nixpkgs.follows = "nixpkgs";
This states that the 'nixpkgs' input of the 'nixops' input shall be
the same as the calling flake's 'nixpkgs' input.
Finally, at '-v' Nix now prints the changes to the lock file, e.g.
$ nix flake update ~/Misc/eelco-configurations/hagbard
inputs of flake 'git+file:///home/eelco/Misc/eelco-configurations?subdir=hagbard' changed:
updated 'nixpkgs': 'github:edolstra/nixpkgs/7845bf5f4b3013df1cf036e9c9c3a55a30331db9' -> 'github:edolstra/nixpkgs/03f3def66a104a221aac8b751eeb7075374848fd'
removed 'nixops'
removed 'nixops/nixops-aws'
removed 'nixops/nixops-hetzner'
removed 'nixops/nixpkgs'
2020-01-24 23:05:11 +02:00
|
|
|
FlakeInputs inputs;
|
2019-05-30 00:09:23 +03:00
|
|
|
Value * vOutputs; // FIXME: gc
|
2019-07-11 14:54:53 +03:00
|
|
|
unsigned int edition;
|
2020-01-21 17:27:53 +02:00
|
|
|
~Flake();
|
2019-03-21 10:30:16 +02:00
|
|
|
};
|
|
|
|
|
2019-09-18 22:17:27 +03:00
|
|
|
Flake getFlake(EvalState & state, const FlakeRef & flakeRef, bool allowLookup);
|
2019-06-21 20:04:58 +03:00
|
|
|
|
2019-06-07 23:25:48 +03:00
|
|
|
/* Fingerprint of a locked flake; used as a cache key. */
|
|
|
|
typedef Hash Fingerprint;
|
|
|
|
|
2020-01-22 21:59:59 +02:00
|
|
|
struct LockedFlake
|
2019-03-21 10:30:16 +02:00
|
|
|
{
|
2019-03-29 17:18:25 +02:00
|
|
|
Flake flake;
|
2019-06-04 20:10:35 +03:00
|
|
|
LockFile lockFile;
|
2019-06-07 23:25:48 +03:00
|
|
|
|
|
|
|
Fingerprint getFingerprint() const;
|
2019-03-21 10:30:16 +02:00
|
|
|
};
|
|
|
|
|
2020-01-24 14:07:03 +02:00
|
|
|
LockedFlake lockFlake(EvalState &, const FlakeRef &, LockFileMode);
|
2019-04-16 15:27:54 +03:00
|
|
|
|
2019-06-04 20:10:35 +03:00
|
|
|
void callFlake(EvalState & state,
|
|
|
|
const Flake & flake,
|
2019-08-30 17:27:51 +03:00
|
|
|
const LockedInputs & inputs,
|
2019-06-04 20:10:35 +03:00
|
|
|
Value & v);
|
|
|
|
|
|
|
|
void callFlake(EvalState & state,
|
2020-01-22 21:59:59 +02:00
|
|
|
const LockedFlake & resFlake,
|
2019-06-04 20:10:35 +03:00
|
|
|
Value & v);
|
2019-05-24 00:42:13 +03:00
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
}
|
2019-05-29 16:31:07 +03:00
|
|
|
|
|
|
|
}
|