14 lines
411 B
Nix
14 lines
411 B
Nix
final: prev: {
|
|
coreutils-doge = prev.coreutils.overrideAttrs (old: {
|
|
patches = [ ./coreutils.patch ];
|
|
});
|
|
|
|
nitter = prev.nitter.overrideAttrs (old: {
|
|
patches = (old.patches or [ ]) ++ [
|
|
(final.fetchpatch {
|
|
url = "https://patch-diff.githubusercontent.com/raw/zedeus/nitter/pull/830.patch";
|
|
hash = "sha256-MIl22yWHAGQtcB1/B9OfbfoVhxOBIAJ3n1eT2Ko1Y3Q=";
|
|
})
|
|
];
|
|
});
|
|
}
|