This implements support for dotti.me in notmuch by changing the formatting of relative and absolute times.
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			174 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			174 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ pkgs, ... }:
 | 
						|
 | 
						|
pkgs.third_party.originals.notmuch.overrideAttrs(old: {
 | 
						|
  doCheck = false;
 | 
						|
  patches = [ ./dottime.patch ] ++ (if old ? patches then old.patches else []);
 | 
						|
})
 |