aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-11-20Remove #includeEelco Dolstra
2019-11-20Move #includeEelco Dolstra
2019-11-19Merge pull request #3228 from Ma27/flake-fix-templateEelco Dolstra
Fix attr path to nixpkgs flake in flake template
2019-11-14Fix attr path to nixpkgs flake in flake templateMaximilian Bosch
This doesn't work anymore since `packages` was removed from the `nixpkgs`-fork with flake support[1], now it's only possible to refer to pkgs via `legacyPackages`. [1] https://github.com/edolstra/nixpkgs/commit/49c9b71e4ca98722cecd64ce8d53c1a4b9c46b64
2019-11-12nix dev-shell: Improve bash output parsingEelco Dolstra
Fixes handling of '=' in unquoted strings and escaped characters in $'...' strings.
2019-11-08Merge remote-tracking branch 'origin/master' into flakesEelco Dolstra
2019-11-08Move editorFor srom libutil to nixEelco Dolstra
libutil should not depend on libexpr.
2019-11-08Merge remote-tracking branch 'origin/master' into flakesEelco Dolstra
2019-11-07Fix installerScript jobEelco Dolstra
https://hydra.nixos.org/build/105961653
2019-11-07Use upstream nlohmann_jsonEelco Dolstra
2019-11-07Merge remote-tracking branch 'origin/master' into flakesEelco Dolstra
2019-11-07Fix Perl bindingsEelco Dolstra
2019-11-07Fix macOS buildEelco Dolstra
2019-11-07Merge remote-tracking branch 'origin/master' into flakesEelco Dolstra
2019-11-07Disable the evalNixOS testEelco Dolstra
It also OOMs. https://hydra.nixos.org/build/105942679
2019-11-07Remove #includeEelco Dolstra
2019-11-07Revert "autoconf: Allow overriding CFLAGS/CXXFLAGS from outside."Eelco Dolstra
This reverts commit 717e821b99797845e1bef47d862f8cb0fb69cfc9. It's much more convenient to do 'make OPTIMIZE=0'.
2019-11-07Precompile headersEelco Dolstra
This cuts 'make install -j6' on my laptop from 170s to 134s.
2019-11-06CleanupEelco Dolstra
2019-11-06Fix GitHub testEelco Dolstra
2019-11-06Fix buildEelco Dolstra
2019-11-06Use more stable registry URLEelco Dolstra
2019-11-06Use revcount/last-modified for computing the flake fingerprintEelco Dolstra
The store path is not enough. For example, when we build a dirty tree, commit, and build the clean tree, a re-evaluation is necessary because the flake may depend on the lastModified or revCount attributes.
2019-11-06Merge remote-tracking branch 'origin/master' into flakesEelco Dolstra
2019-11-06Disable the evalNixpkgs testEelco Dolstra
It constantly OOMs. https://hydra.nixos.org/build/105784912
2019-11-06Fix binaryTarball testEelco Dolstra
2019-11-06Make --enable-gc the defaultEelco Dolstra
2019-11-05Merge branch 'fix/nix-doctor-output' of https://github.com/bhipple/nixEelco Dolstra
2019-11-05Disable shellcheckEelco Dolstra
It's broken at the moment: https://hydra.nixos.org/build/105746055 Also it pulls in GHC which is a pretty big dependency.
2019-11-05Fix manual buildEelco Dolstra
2019-11-05Merge branch 'nix-repl-e' of https://github.com/zimbatm/nixEelco Dolstra
2019-11-05Merge pull request #3193 from matthewbauer/patch-11Eelco Dolstra
Update man to show that nix-shell allows --arg
2019-11-05Merge pull request #3190 from mkenigs/examplesEelco Dolstra
change deprecated attribute syntax in run examples
2019-11-05Merge pull request #3173 from mkenigs/typoEelco Dolstra
fix typo
2019-11-05Merge pull request #3180 from kevinastock/patch-1Eelco Dolstra
docs: fix upper bound on number of consumed cores
2019-11-05Merge pull request #3199 from kevinastock/patch-2Eelco Dolstra
docs: xref doesn't render in title
2019-11-05Fix VM testsEelco Dolstra
2019-11-05Merge branch 'switch-to-19.09' of https://github.com/Ericson2314/nixEelco Dolstra
2019-11-05Don't use SOCK_CLOEXEC on macOSEelco Dolstra
https://hydra.nixos.org/build/105428308
2019-11-04Merge pull request #3206 from kevinastock/patch-3Eelco Dolstra
docs: correct default location of log directory
2019-11-04Merge remote-tracking branch 'origin/master' into flakesEelco Dolstra
2019-11-04docs: correct default location of log directoryKevin Stock
2019-11-04Merge pull request #3202 from kraem/masterEelco Dolstra
Update nix eval --help msg to not include deprecated command
2019-11-04Merge pull request #3203 from hvdijk/prefetch-progressEelco Dolstra
Fix progress bar when nix-prefetch-url is piped.
2019-11-03Fix progress bar when nix-prefetch-url is piped.Harald van Dijk
The intent of the code was that if the window size cannot be determined, it would be treated as having the maximum possible size. Because of a missing assignment, it was actually treated as having a width of 0. The reason the width could not be determined was because it was obtained from stdout, not stderr, even though the printing was done to stderr. This commit addresses both issues.
2019-11-03Update nix eval --help msg to not include deprecated commandkraem
2019-11-02docs: xref doesn't render in titleKevin Stock
The `post-build-hook` text currently appears in the index, but not on the actual title line of the section, this follows the pattern used in a previous section to get a reference into a title.
2019-11-01Update man to show that nix-shell allows --argMatthew Bauer
2019-11-01Merge pull request #3192 from ng-0/ng0/issue3186Eelco Dolstra
include netinet/in.h in src/nix/main.cc
2019-11-01include netinet/in.h in src/nix/main.ccng0
Fixes #3186