Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-06 | repl.cc: Check for HAVE_BOEHMGC | Eelco Dolstra | |
Fixes #3906. | |||
2020-08-05 | don't crash if there's no drvPath | Ben Burdette | |
2020-08-05 | add derivation path to hint | Ben Burdette | |
2020-08-05 | error messages for issue 2238 | Ben Burdette | |
2020-08-05 | Update src/libexpr/primops.cc | John Ericson | |
Co-authored-by: Eelco Dolstra <edolstra@gmail.com> | |||
2020-08-05 | Merge branch 'master' of github.com:NixOS/nix into ↵ | John Ericson | |
derivation-primop-floating-output | |||
2020-08-05 | Merge remote-tracking branch 'obsidian/misc-ca' into ↵ | John Ericson | |
derivation-primop-floating-output | |||
2020-08-05 | Style fix | Eelco Dolstra | |
2020-08-05 | Merge branch 'misc-ca' of https://github.com/obsidiansystems/nix | Eelco Dolstra | |
2020-08-05 | Sed some names to perhaps avoid conflicts | John Ericson | |
2020-08-05 | Style fix | Eelco Dolstra | |
2020-08-05 | Reanme `DerivationType::Regular` defintion too | John Ericson | |
This is the one non-prefixed occurence | |||
2020-08-05 | Make names more consistent | John Ericson | |
2020-08-05 | Merge remote-tracking branch 'upstream/master' into misc-ca | John Ericson | |
2020-08-05 | Merge remote-tracking branch 'upstream/master' into misc-ca | John Ericson | |
2020-08-05 | Merge pull request #3730 from obsidiansystems/better-ca-parse-errors | Eelco Dolstra | |
Improve hash parsing and errors | |||
2020-08-05 | Merge pull request #3864 from obsidiansystems/more-topo-sort | Eelco Dolstra | |
Abstract out topo sorting logic | |||
2020-08-05 | Typo | Eelco Dolstra | |
2020-08-04 | Merge remote-tracking branch 'upstream/master' into better-ca-parse-errors | John Ericson | |
2020-08-04 | Merge pull request #3894 from obsidiansystems/json-test-order-agnostic | Eelco Dolstra | |
Make JSON equality tests agnostic to ordering | |||
2020-08-04 | S3BinaryCacheStore: Fix size determination | Eelco Dolstra | |
2020-08-04 | Revert "Remove putBytes" | Eelco Dolstra | |
This reverts commit b8eea7e81af53905be7845dffc6d0a83ea8edc97. | |||
2020-08-04 | BinaryCacheStore: Explicitly flush file sink | Eelco Dolstra | |
The file sink is also flushed in its destructor, but we ignore any exceptions in the destructor. Issue #3886. | |||
2020-08-04 | Merge pull request #3892 from obsidiansystems/path-info-header | Eelco Dolstra | |
Move ValidPathInfo to its own header | |||
2020-08-04 | tab -> space | John Ericson | |
2020-08-03 | Merge remote-tracking branch 'upstream/master' into path-info-header | John Ericson | |
2020-08-03 | Delete compressed NARs | Eelco Dolstra | |
Fixes #3891. | |||
2020-08-03 | `addToStore` in terms of `addToStoreFromDump` is not local-store-specific | John Ericson | |
2020-08-01 | Fix error message and avoid recalculation | John Ericson | |
2020-08-01 | Embelish documentation of new Hash functions | John Ericson | |
2020-08-01 | Convert to C-style comments | John Ericson | |
2020-07-31 | Tweak description | Eelco Dolstra | |
2020-07-31 | Merge branch 'nix-command-build-check' of https://github.com/Ma27/nix | Eelco Dolstra | |
2020-07-31 | nix bundle: Set category | Eelco Dolstra | |
2020-07-31 | nix/build: add `--rebuild` option | Maximilian Bosch | |
Occasionally, `nix-build --check` is fairly helpful and I'd like to be able to use this feature for flakes that need to be built with `nix build` as well. | |||
2020-07-31 | Merge pull request #3880 from matthewbauer/nix-bundle | Eelco Dolstra | |
Add "bundle" command to Nix | |||
2020-07-31 | Fix indentation | John Ericson | |
2020-07-30 | Merge branch 'master' of github.com:NixOS/nix into better-ca-parse-errors | Carlo Nucera | |
2020-07-30 | Make expectedHash optional in prim_path | Matthew Bauer | |
This fixes an error found in builtins.path that looks like: store path mismatch in (possibly filtered) path added from '/private/tmp/nix-shell.CyXViH/nix-test/filter-source/filterin' when no hash is specified | |||
2020-07-30 | Pass system to bundler | Matthew Bauer | |
2020-07-30 | Address misc review | Matthew Bauer | |
2020-07-30 | Remove single file restriction for bundler | Matthew Bauer | |
2020-07-30 | exporter -> bundler | Matthew Bauer | |
2020-07-30 | Merge remote-tracking branch 'origin/master' into substitute-other-storedir | Matthew Bauer | |
2020-07-30 | Handle exporters checking correctly | Matthew Bauer | |
2020-07-30 | Add "export" to Nix | Matthew Bauer | |
This adds a ‘nix export’ command which hooks into nix-bundle. It can be used in a similar way as nix-bundle, with the benefit of hooking into the new “app” functionality. For instance, $ nix export nixpkgs#jq $ ./jq --help jq - commandline JSON processor [version 1.6] ... $ scp jq machine-without-nix: $ ssh machine-without-nix ./jq jq - commandline JSON processor [version 1.6] ... Note that nix-bundle currently requires Linux to run. Other exporters might not have that requirement. “exporters” are meant to be reusable, so that, other repos can implement their own bundling. Fixes #3705 | |||
2020-07-30 | Fix build | Eelco Dolstra | |
2020-07-30 | unsigned long long -> uint64_t | Eelco Dolstra | |
2020-07-30 | receiveContents(): unsigned int -> size_t | Eelco Dolstra | |
2020-07-29 | Prevent nix-build from accepting --run/--command | Mat Marini | |