about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/search/grepm/default.nix
blob: c3adbb2ab8b05c6d706c4b1807a1af544b4fc9e4 (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
34
{ lib, stdenv, fetchurl, perlPackages, mutt }:

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

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

  dontUnpack = true;

  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 lib; {
    description = "Wrapper for grepmail utilizing mutt";
    homepage = "https://www.barsnick.net/sw/grepm.html";
    license = licenses.free;
    platforms = platforms.unix;
    maintainers = [ maintainers.romildo ];
    mainProgram = "grepm";
  };
}