mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Adding mairix
svn path=/nixpkgs/trunk/; revision=28122
This commit is contained in:
parent
7233051b2c
commit
71dc3b87eb
2 changed files with 24 additions and 0 deletions
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;
|
||||
};
|
||||
|
||||
mairix = callPackage ../tools/text/mairix { };
|
||||
|
||||
man = callPackage ../tools/misc/man { };
|
||||
|
||||
man_db = callPackage ../tools/misc/man-db { };
|
||||
|
@ -7620,6 +7622,8 @@ let
|
|||
|
||||
xconq = callPackage ../games/xconq {};
|
||||
|
||||
xracer = callPackage ../games/xracer { };
|
||||
|
||||
xsokoban = builderDefsPackage (import ../games/xsokoban) {
|
||||
inherit (xlibs) libX11 xproto libXpm libXt;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue