about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/mutt-wizard/default.nix
blob: 1a63730d31e43c1d02d8e2f3c61f5f8cdb9c423d (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
{ 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;
  };
}