Home Explore Blog Models CI



nixpkgs

doc/functions/nix-gitignore.section.md
0d4b08f3b20028d77d6bd1c8fa128b761db021a355c3c87b000000030000092c
# pkgs.nix-gitignore {#sec-pkgs-nix-gitignore}

`pkgs.nix-gitignore` is a function that acts similarly to `builtins.filterSource` but also allows filtering with the help of the gitignore format.

## Usage {#sec-pkgs-nix-gitignore-usage}

`pkgs.nix-gitignore` exports a number of functions, but you'll most likely need either `gitignoreSource` or `gitignoreSourcePure`. As their first argument, they both accept either 1. a file with gitignore lines or 2. a string with gitignore lines, or 3. a list of either of the two. They will be concatenated into a single big string.

```nix
{
  pkgs ? import <nixpkgs> { },
}:
{

  src = nix-gitignore.gitignoreSource [ ] ./source;
  # Simplest version

  src = nix-gitignore.gitignoreSource ''
    supplemental-ignores
  '' ./source;
  # This one reads the ./source/.gitignore and concats the auxiliary ignores

  src = nix-gitignore.gitignoreSourcePure ''
    ignore-this
    ignore-that
  '' ./source;
  # Use this string as gitignore, don't read ./source/.gitignore.

  src = nix-gitignore.gitignoreSourcePure [
    ''
      ignore-this
      ignore-that
    ''
    ~/.gitignore
  ] ./source;
  # It also accepts a list (of strings and paths) that will be concatenated
  # once the paths are turned to strings via readFile.
}
```

These functions are derived from the `Filter` functions by setting the first filter argument to `(_: _: true)`:

```nix
{
  gitignoreSourcePure = gitignoreFilterSourcePure (_: _: true);
  gitignoreSource = gitignoreFilterSource (_: _: true);
}
```

Those filter functions accept the same arguments the `builtins.filterSource` function would pass to its filters, thus `fn: gitignoreFilterSourcePure fn ""` should be extensionally equivalent to `filterSource`. The file is blacklisted if it's blacklisted by either your filter or the gitignoreFilter.

If you want to make your own filter from scratch, you may use

```nix
{ gitignoreFilter = ign: root: filterPattern (gitignoreToPatterns ign) root; }
```

## gitignore files in subdirectories {#sec-pkgs-nix-gitignore-usage-recursive}

If you wish to use a filter that would search for .gitignore files in subdirectories, just like git does by default, use this function:

```nix
{
  # gitignoreFilterRecursiveSource = filter: patterns: root:
  # OR
  gitignoreRecursiveSource = gitignoreFilterSourcePure (_: _: true);
}
```

Chunks
35051c46 (1st chunk of `doc/functions/nix-gitignore.section.md`)
Title: Nix Gitignore Filtering with pkgs.nix-gitignore
Summary
`pkgs.nix-gitignore` is a Nix function that extends `builtins.filterSource` by allowing file filtering based on the `.gitignore` format. Its primary functions are `gitignoreSource` and `gitignoreSourcePure`, both of which accept gitignore rules as a string, file path, or a list of these. `gitignoreSource` combines `.gitignore` files found in the source directory with additional provided rules, while `gitignoreSourcePure` uses only the explicitly given rules. The module also offers `gitignoreFilter` for creating custom filters and `gitignoreRecursiveSource` for applying gitignore rules recursively, similar to how Git handles `.gitignore` files in subdirectories.