lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

typical: fix build

+19
+13
pkgs/by-name/ty/typical/lifetime.patch
··· 1 + diff --git a/src/error.rs b/src/error.rs 2 + index 4563e1e..050610d 100644 3 + --- a/src/error.rs 4 + +++ b/src/error.rs 5 + @@ -34,7 +34,7 @@ impl fmt::Display for Error { 6 + } 7 + 8 + impl error::Error for Error { 9 + - fn source<'a>(&'a self) -> Option<&(dyn error::Error + 'static)> { 10 + + fn source(&self) -> Option<&(dyn error::Error + 'static)> { 11 + self.reason.as_deref() 12 + } 13 + }
+6
pkgs/by-name/ty/typical/package.nix
··· 28 28 export NO_COLOR=true 29 29 ''; 30 30 31 + patches = [ 32 + # Related to https://github.com/stepchowfun/typical/pull/501 33 + # Commiting a slightly different patch because the upstream one doesn't apply cleanly 34 + ./lifetime.patch 35 + ]; 36 + 31 37 postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' 32 38 installShellCompletion --cmd typical \ 33 39 --bash <($out/bin/typical shell-completion bash) \