]> Git — Sourcephile - sourcephile-nix.git/blob - nixpkgs/overlays/public-inbox.nix
nix: revamp directories to put nixpkgs-overlays in the store
[sourcephile-nix.git] / nixpkgs / overlays / public-inbox.nix
1 self: super: {
2 public-inbox = super.public-inbox.overrideAttrs (oldAttrs: rec {
3 version = "1.5.0";
4 src = super.fetchurl {
5 url = "https://yhbt.net/public-inbox.git/snapshot/public-inbox-${version}.tar.gz";
6 sha256 = "11fvgcs4vj4jbvwij3fh3jilvmaz0qzv09jcbhxb2hkpzdymzywk";
7 };
8 patches = map super.fetchpatch [
9 { meta.description = "[PATCH] treat $INBOX_DIR/description and gitweb.owner as UTF-8";
10 url = "https://public-inbox.org/meta/20200528183708.GA549@dcvr/raw";
11 sha256 = "15ad3bc1rcs8fyw26z3xcmxx8868ga6ydxzk80zic29x875kadak";
12 }
13 ];
14 });
15 }