Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixos-homepage
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7a00d25e2355
Choose a base ref
...
head repository: NixOS/nixos-homepage
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 47ac3571c4d7
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Apr 25, 2020

  1. Use fd to rebuild untracked files

    Fixes #410
    
    `git ls-files` only traces files that are already in Git. When adding
    new content, this is inconvenient. `fd` searches the entire directory
    irrespective of the files' status in Git. However, it still respects
    .gitignore files, so that it ignores build artifacts.
    milibopp committed Apr 25, 2020
    Copy the full SHA
    50f0bb4 View commit details

Commits on Apr 28, 2020

  1. Merge pull request #414 from aepsil0n/fd-entr-make

    Use fd to rebuild untracked files
    garbas authored Apr 28, 2020
    1

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    47ac357 View commit details
Showing with 3 additions and 2 deletions.
  1. +1 −1 README.md
  2. +2 −1 flake.nix
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ then open http://127.0.0.1:8000/index.html

To automatically rebuild on every change:

[nix-shell]$ git ls-files | entr make
[nix-shell]$ fd | entr make

To test the complete result from a nix-build:

3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
@@ -38,7 +38,8 @@
enableParallelBuilding = true;

buildInputs =
[ libxslt
[ fd
libxslt
libxml2
perl
perlPackages.JSON