summary refs log tree commit diff
path: root/pkgs/tools/networking/philter/default.nix
blob: c8b4411684689e26e3912fb5ed69462beb35f5b5 (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
{ stdenv, fetchurl, python }:

stdenv.mkDerivation rec {
  pname = "philter";
  version = "1.1";
  src = fetchurl {
    url = "mirror://sourceforge/philter/${pname}-${version}.tar.gz";
    sha256 = "177pqfflhdn2mw9lc1wv9ik32ji69rjqr6dw83hfndwlsva5151l";
  };

  installPhase = ''
    mkdir -p "$out"/{bin,share/philter}
    cp .philterrc "$out"/share/philter/philterrc
    sed -i 's@/usr/local/bin@${python}/bin@' src/philter.py
    cp src/philter.py "$out"/bin/philter
    chmod +x "$out"/bin/philter
  '';

  meta = with stdenv.lib; {
    description = "Mail sorter for Maildirs";
    homepage = http://philter.sourceforge.net;
    maintainers = with maintainers; [ raskin ];
    platforms = platforms.linux;
    license = licenses.gpl2;
  };

  passthru = {
    updateInfo = {
      downloadPage = "http://philter.sourceforge.net/";
    };
  };
}