Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-07 | Improve FlakeRef::to_string() | Eelco Dolstra | |
We were incorrectly using path syntax (i.e. /<ref>/<rev>) for Git repositories. This is only valid for GitHub flakerefs. | |||
2019-05-01 | Allow 'dir' parameter in github: URIs | Eelco Dolstra | |
E.g. 'github:edolstra/dwarffs/flake?dir=foo/bar'. | |||
2019-05-01 | Accept empty directories | Eelco Dolstra | |
2019-05-01 | Validate 'dir=' parameters | Eelco Dolstra | |
We reject any path element starting with a '.' (mostly to reject '.' and '..'). | |||
2019-05-01 | Support 'dir' parameters in https and ssh flake URIs | Eelco Dolstra | |
2019-05-01 | WIP: still need to adapt flakeref parsing | Nick Van den Broeck | |
2019-04-19 | Improve missing flake.nix error message | Eelco Dolstra | |
2019-04-19 | Fix assertion failure in FlakeRef::to_string() | Eelco Dolstra | |
2019-04-16 | Allow refs to start with a digit | Eelco Dolstra | |
E.g. we want to accept "19.03" as a ref. | |||
2019-04-16 | Fix lock file generation | Eelco Dolstra | |
Before: "requires": { "nixpkgs": { "uri": "nixpkgs" } }, After: "requires": { "nixpkgs": { "uri": "github:edolstra/nixpkgs/f10e8a02eb7fa2b4a070f30cf87f4efcc7f3186d" } }, | |||
2019-04-15 | FlakeRef::to_string(): Drop the "flake:" prefix | Eelco Dolstra | |
This is unnecessary in most contexts and makes 'nix flake list' output less readable. | |||
2019-04-09 | FlakeAlias is implemented | Nick Van den Broeck | |
2019-04-09 | Took ref and rev out of FlakeRef | Nick Van den Broeck | |
2019-04-08 | Allow relative paths in flakerefs | Eelco Dolstra | |
Also allow "." as an installable to refer to the flake in the current directory. E.g. $ nix build . will build 'provides.defaultPackage' in the flake in the current directory. | |||
2019-04-08 | Add path flakeref variant | Eelco Dolstra | |
Unlike file://<path>, this allows the path to be a dirty Git tree, so nix build /path/to/flake:attr is a convenient way to test building a local flake. | |||
2019-03-22 | Issue #15 is finished | Nick Van den Broeck | |
2019-02-12 | Interpret all file:// URIs as Git repositories | Eelco Dolstra | |
2019-02-12 | Enforce use of immutable flakes in pure mode | Eelco Dolstra | |
... plus a temporary hack to allow impure flakes at top-level for the default installation source. | |||
2019-02-12 | Improve flake references | Eelco Dolstra | |