088e0af6bb
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/vibybpmnsw93gg4rlf04bms7qf5nc9c7-mairix-0.24/bin/mairix -h` got 0 exit code - ran `/nix/store/vibybpmnsw93gg4rlf04bms7qf5nc9c7-mairix-0.24/bin/mairix --help` got 0 exit code - ran `/nix/store/vibybpmnsw93gg4rlf04bms7qf5nc9c7-mairix-0.24/bin/mairix -V` and found version 0.24 - ran `/nix/store/vibybpmnsw93gg4rlf04bms7qf5nc9c7-mairix-0.24/bin/mairix --version` and found version 0.24 - ran `/nix/store/vibybpmnsw93gg4rlf04bms7qf5nc9c7-mairix-0.24/bin/mairix -h` and found version 0.24 - ran `/nix/store/vibybpmnsw93gg4rlf04bms7qf5nc9c7-mairix-0.24/bin/mairix --help` and found version 0.24 - found 0.24 with grep in /nix/store/vibybpmnsw93gg4rlf04bms7qf5nc9c7-mairix-0.24 - found 0.24 in filename of file in /nix/store/vibybpmnsw93gg4rlf04bms7qf5nc9c7-mairix-0.24 cc "@viric"
26 lines
713 B
Nix
26 lines
713 B
Nix
{ stdenv, fetchurl, zlib, bzip2, bison, flex }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mairix-0.24";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/mairix/${name}.tar.gz";
|
|
sha256 = "0msaxz5c5hf7k1ci16i67m4ynrbrpsxbqzk84nz6z2vnkh3jww50";
|
|
};
|
|
|
|
buildInputs = [ zlib bzip2 bison flex ];
|
|
|
|
# https://github.com/rc0/mairix/pull/19
|
|
patches = [ ./mmap.patch ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = http://www.rc0.org.uk/mairix;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
description = "Program for indexing and searching email messages stored in maildir, MH or mbox";
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = with stdenv.lib.platforms; all;
|
|
};
|
|
}
|