]> git.immae.eu Git - perso/Immae/Config/Nix.git/blobdiff - pkgs/dovecot/plugins/deleted_to_trash/default.nix
Squash changes containing private information
[perso/Immae/Config/Nix.git] / pkgs / dovecot / plugins / deleted_to_trash / default.nix
diff --git a/pkgs/dovecot/plugins/deleted_to_trash/default.nix b/pkgs/dovecot/plugins/deleted_to_trash/default.nix
deleted file mode 100644 (file)
index db1afb5..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-{ stdenv, fetchurl, dovecot, mylibs, fetchpatch }:
-
-stdenv.mkDerivation (mylibs.fetchedGithub ./dovecot-deleted_to_trash.json // rec {
-  buildInputs = [ dovecot ];
-  patches = [
-    (fetchpatch {
-      name = "fix-dovecot-2.3.diff";
-      url = "https://github.com/lexbrugman/dovecot_deleted_to_trash/commit/c52a3799a96104a603ade33404ef6aa1db647b2f.diff";
-      sha256 = "0pld3rdcjp9df2qxbp807k6v4f48lyk0xy5q508ypa57d559y6dq";
-    })
-    ./fix_mbox.patch
-  ];
-  preConfigure = ''
-    substituteInPlace Makefile --replace \
-      "/usr/include/dovecot" \
-      "${dovecot}/include/dovecot"
-    substituteInPlace Makefile --replace \
-      "/usr/lib/dovecot/modules" \
-      "$out/lib/dovecot"
-    '';
-})