about summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorSCOTT-HAMILTON <sgn.hamilton+github@protonmail.com>2021-06-02 11:58:38 +0200
committerSCOTT-HAMILTON <sgn.hamilton+github@protonmail.com>2021-06-02 14:42:42 +0200
commit2e4df1d5c4c68d85a403ec19b56557e8fb816f05 (patch)
tree4222c707612b2179f276bdbb8e749b879142a92a /pkgs/tools/misc
parent99febc68c9bc7fe470233f7c116b8083abab6880 (diff)
downloadnixlib-2e4df1d5c4c68d85a403ec19b56557e8fb816f05.tar
nixlib-2e4df1d5c4c68d85a403ec19b56557e8fb816f05.tar.gz
nixlib-2e4df1d5c4c68d85a403ec19b56557e8fb816f05.tar.bz2
nixlib-2e4df1d5c4c68d85a403ec19b56557e8fb816f05.tar.lz
nixlib-2e4df1d5c4c68d85a403ec19b56557e8fb816f05.tar.xz
nixlib-2e4df1d5c4c68d85a403ec19b56557e8fb816f05.tar.zst
nixlib-2e4df1d5c4c68d85a403ec19b56557e8fb816f05.zip
mutt-wizard: init at 3.2.1
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/mutt-wizard/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/tools/misc/mutt-wizard/default.nix b/pkgs/tools/misc/mutt-wizard/default.nix
new file mode 100644
index 000000000000..1a63730d31e4
--- /dev/null
+++ b/pkgs/tools/misc/mutt-wizard/default.nix
@@ -0,0 +1,26 @@
+{ lib
+, stdenvNoCC
+, fetchFromGitHub
+}:
+
+stdenvNoCC.mkDerivation rec {
+  pname = "mutt-wizard";
+  version = "3.2.1";
+
+  src = fetchFromGitHub {
+    owner = "LukeSmithxyz";
+    repo = "mutt-wizard";
+    rev = "v${version}";
+    sha256 = "1m4s0vj57hh38rdgdc28p10vnsq80dh708imvdgxbj1i96nq41r8";
+  };
+
+  makeFlags = [ "PREFIX=$(out)" ];
+
+  meta = with lib; {
+    description = "System for automatically configuring mutt and isync";
+    homepage = "https://github.com/LukeSmithxyz/mutt-wizard";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ shamilton ];
+    platforms = platforms.unix;
+  };
+}