Adding mairix
svn path=/nixpkgs/trunk/; revision=28122
This commit is contained in:
parent
7233051b2c
commit
71dc3b87eb
20
pkgs/tools/text/mairix/default.nix
Normal file
20
pkgs/tools/text/mairix/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ stdenv, fetchurl, zlib, bzip2, bison, flex }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "mairix-0.22";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/mairix/${name}.tar.gz";
|
||||||
|
sha256 = "0kwxq738nbv8ip5gkq2bw320qs1vg0pnv7wsc0p5cxwzxxrv47ql";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ zlib bzip2 bison flex ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://www.rc0.org.uk/mairix;
|
||||||
|
license = "GPLv2+";
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -912,6 +912,8 @@ let
|
|||||||
guile = guile_1_8;
|
guile = guile_1_8;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mairix = callPackage ../tools/text/mairix { };
|
||||||
|
|
||||||
man = callPackage ../tools/misc/man { };
|
man = callPackage ../tools/misc/man { };
|
||||||
|
|
||||||
man_db = callPackage ../tools/misc/man-db { };
|
man_db = callPackage ../tools/misc/man-db { };
|
||||||
@ -7620,6 +7622,8 @@ let
|
|||||||
|
|
||||||
xconq = callPackage ../games/xconq {};
|
xconq = callPackage ../games/xconq {};
|
||||||
|
|
||||||
|
xracer = callPackage ../games/xracer { };
|
||||||
|
|
||||||
xsokoban = builderDefsPackage (import ../games/xsokoban) {
|
xsokoban = builderDefsPackage (import ../games/xsokoban) {
|
||||||
inherit (xlibs) libX11 xproto libXpm libXt;
|
inherit (xlibs) libX11 xproto libXpm libXt;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user