python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / mutt-wizard / default.nix
blob98c160768d98b440ae369c02a96652e746f34f47
1 { lib
2 , stdenvNoCC
3 , fetchFromGitHub
4 }:
6 stdenvNoCC.mkDerivation rec {
7   pname = "mutt-wizard";
8   version = "3.3.1";
10   src = fetchFromGitHub {
11     owner = "LukeSmithxyz";
12     repo = "mutt-wizard";
13     rev = "v${version}";
14     sha256 = "sha256-1/+awwoAqD8Xm3hULcbpeTaLOHVuYRA4PPr3cq5Gy20=";
15   };
17   makeFlags = [ "PREFIX=$(out)" ];
19   meta = with lib; {
20     description = "System for automatically configuring mutt and isync";
21     homepage = "https://github.com/LukeSmithxyz/mutt-wizard";
22     license = licenses.gpl3Plus;
23     maintainers = with maintainers; [ shamilton ];
24     platforms = platforms.unix;
25   };