Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-08 | Export missing rev/shortRev attributes | Eelco Dolstra | |
2019-05-08 | updateLockFile: Do "git add" in a slightly nicer way | Eelco Dolstra | |
"--intent-to-add" ensures the change shows up in "git diff". | |||
2019-05-07 | Fixed Flake data type and flake fetching | Nick Van den Broeck | |
2019-05-03 | Fix 'git add' when subdir is empty | Eelco Dolstra | |
2019-05-03 | Merge remote-tracking branch 'tweag/subdir' into flakes | Eelco Dolstra | |
2019-05-02 | Fixed compile errors | Nick Van den Broeck | |
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 | Improve error message | Eelco Dolstra | |
2019-05-01 | flake.lock now uses flakeRef.subdir | Nick Van den Broeck | |
2019-05-01 | Support 'dir' parameters in https and ssh flake URIs | Eelco Dolstra | |
2019-05-01 | Fuzzymatching | Nick Van den Broeck | |
Fixed issue #61 | |||
2019-05-01 | WIP: still need to adapt flakeref parsing | Nick Van den Broeck | |
2019-04-30 | Merge remote-tracking branch 'tweag/flakeFlags' into flakes | Eelco Dolstra | |
2019-04-30 | Fixed issue #13 | Nick Van den Broeck | |
2019-04-30 | Fix flag registry order | Nick Van den Broeck | |
2019-04-25 | Merge remote-tracking branch 'tweag/fixFlakeList' into flakes | Eelco Dolstra | |
2019-04-25 | Fix printing FlakeList | Nick Van den Broeck | |
2019-04-25 | Fixed lookupFlake bug | Nick Van den Broeck | |
2019-04-24 | Merge remote-tracking branch 'tweag/flake-clone' into flakes | Eelco Dolstra | |
2019-04-19 | Use "." as the default installable | Eelco Dolstra | |
This makes e.g. "nix build" do something more or less reasonable (namely, build the default package of the flake in the current directory). | |||
2019-04-19 | Merge remote-tracking branch 'tweag/resolvedFlake' into flakes | Eelco Dolstra | |
2019-04-19 | nlohmann-json: 3.5.0 -> 3.6.1 | Eelco Dolstra | |
https://github.com/nlohmann/json/releases/tag/v3.6.1 This fixes some clang warnings. | |||
2019-04-19 | Shut up clang warning | Eelco Dolstra | |
2019-04-19 | Changed some names | Nick Van den Broeck | |
2019-04-19 | nix flake info: Show revcount | Eelco Dolstra | |
2019-04-19 | fetchGit: Return revCount for dirty working trees | Eelco Dolstra | |
2019-04-19 | exportGit: Don't clone local repositories | Eelco Dolstra | |
This ensures that commands like 'nix flake info /my/nixpkgs' don't copy a gigabyte of crap to ~/.cache/nix. Fixes #60. | |||
2019-04-19 | Improve missing flake.nix error message | Eelco Dolstra | |
2019-04-19 | Clean up exportGit argument handling | Eelco Dolstra | |
2019-04-19 | Fix assertion failure in FlakeRef::to_string() | Eelco Dolstra | |
2019-04-19 | Fix assertion failure | Eelco Dolstra | |
2019-04-17 | Fix mutability check | Eelco Dolstra | |
2019-04-17 | Add command `flake clone` | Nick Van den Broeck | |
2019-04-16 | Pass a flake to itself as "self" | 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 | Use the lock file | Eelco Dolstra | |
2019-04-16 | Improve 'nix flake info' a bit | Eelco Dolstra | |
Example: $ nix flake info dwarffs ID: dwarffs URI: github:edolstra/dwarffs/a83d182fe3fe528ed6366a5cec3458bcb1a5f6e1 Description: A filesystem that fetches DWARF debug info from the Internet on demand Revision: a83d182fe3fe528ed6366a5cec3458bcb1a5f6e1 Path: /nix/store/grgd14kxxk8q4n503j87mpz48gcqpqw7-source | |||
2019-04-16 | Fix lock file generation | Eelco Dolstra | |
Before: "requires": { "nixpkgs": { "uri": "nixpkgs" } }, After: "requires": { "nixpkgs": { "uri": "github:edolstra/nixpkgs/f10e8a02eb7fa2b4a070f30cf87f4efcc7f3186d" } }, | |||
2019-04-16 | updateLockFile(): Make sure Git can see flake.lock | Eelco Dolstra | |
2019-04-16 | Remove unneeded pureEval flags | Eelco Dolstra | |
2019-04-16 | Update lock files from InstallableFlake::toValue() | Eelco Dolstra | |
This ensures that the lock file is updated *before* evaluating it, and that it gets updated for any nix command, not just 'nix build'. Also, while computing the lock file, allow arbitrary registry lookups, not just at top-level. Also, improve some error messages slightly. | |||
2019-04-16 | Pass stuff by reference | Eelco Dolstra | |
2019-04-16 | writeLockFile(): Emit empty objects rather than null | Eelco Dolstra | |
2019-04-16 | getFlake(): Use impureIsAllowed | Eelco Dolstra | |
This fixes 'nix build nixpkgs:hello' without --impure. | |||
2019-04-16 | Improve incremental build | Eelco Dolstra | |
2019-04-16 | Remove dead function | Eelco Dolstra | |
2019-04-16 | Fix makeFlakeValue() | Eelco Dolstra | |
2019-04-16 | Add FIXME for pureEval | Eelco Dolstra | |