summary refs log tree commit diff
path: root/modules/packages/gitfs.nix
blob: 89bb2e2a61f47ce257f9167027af99d03cb78195 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:
{
  environment.systemPackages = with pkgs; [
    (gitfs.overrideAttrs (old: {
      patches = (old.patches or []) ++ [
        (fetchpatch {
          name = "fix-MutableMapping.patch";
          url = "https://patch-diff.githubusercontent.com/raw/presslabs/gitfs/pull/382.diff";
          hash = "sha256-ZaIEhv37sorSq3P+6GeH346u/5xh3qE+49D9FRNujMQ=";
        })
      ];
    })
  )];
}