blob: 704831823a4416d1aaebdc5d0160b6c9ec830c2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
with import <stockholm/lib>;
self: super: {
exim = super.exim.overrideAttrs (old: rec {
name = warnOldVersion old.name "exim-4.92.2";
src = self.fetchurl {
url = "https://ftp.exim.org/pub/exim/exim4/${name}.tar.xz";
sha256 = "0m56jsh2fzvwj4rdpcc3pkd5vsi40cjrpzalis7l1zq33m4axmq1";
};
});
}
|