about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/search/grepm/default.nix
blob: bad8d35623c090d708ae8783112cc2a4a3393269 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv, fetchurl, perlPackages, mutt }:

stdenv.mkDerivation {
  pname = "grepm";
  version = "0.6";

  src = fetchurl {
    url = "http://www.barsnick.net/sw/grepm";
    sha256 = "0ppprhfw06779hz1b10qvq62gsw73shccsav982dyi6xmqb6jqji";
  };

  phases = [ "installPhase" ];

  buildInputs = [ perlPackages.grepmail mutt ];

  installPhase = ''
    mkdir -p $out/bin
    cp -a $src $out/bin/grepm
    chmod +x $out/bin/grepm
    sed -i \
      -e "s:^grepmail:${perlPackages.grepmail}/bin/grepmail:" \
      -e "s:^\( *\)mutt:\1${mutt}/bin/mutt:" \
      $out/bin/grepm
  '';
  
  meta = with stdenv.lib; {
    description = "Wrapper for grepmail utilizing mutt";
    homepage = http://www.barsnick.net/sw/grepm.html;
    license = licenses.free;
    platforms = platforms.unix;
    maintainers = [ maintainers.romildo ];
  };
}