about summary refs log tree commit diff
path: root/pkgs/tools/networking/philter
diff options
context:
space:
mode:
authorArmeen Mahdian <mahdianarmeen@gmail.com>2022-04-26 08:58:28 -0500
committerArmeen Mahdian <mahdianarmeen@gmail.com>2022-04-26 08:58:28 -0500
commit2158b4f411423db94b31ab26b3dba9e883aeb079 (patch)
treeda50d645febf39334ec0639731b411239fa66eb5 /pkgs/tools/networking/philter
parent6e4f70e8804273cff4e256e33c0568c202aa24b3 (diff)
philter: remove
Diffstat (limited to 'pkgs/tools/networking/philter')
-rw-r--r--pkgs/tools/networking/philter/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/tools/networking/philter/default.nix b/pkgs/tools/networking/philter/default.nix
deleted file mode 100644
index dc447f3a86b90..0000000000000
--- a/pkgs/tools/networking/philter/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ lib, stdenv, fetchurl, python2 }:
-
-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@${python2}/bin@' src/philter.py
-    cp src/philter.py "$out"/bin/philter
-    chmod +x "$out"/bin/philter
-  '';
-
-  meta = with lib; {
-    description = "Mail sorter for Maildirs";
-    homepage = "http://philter.sourceforge.net";
-    maintainers = with maintainers; [ raskin ];
-    platforms = platforms.all;
-    license = licenses.gpl2;
-  };
-
-  passthru = {
-    updateInfo = {
-      downloadPage = "http://philter.sourceforge.net/";
-    };
-  };
-}