lol

mutt-wizard: init at 3.2.1

+27
+26
pkgs/tools/misc/mutt-wizard/default.nix
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchFromGitHub 4 + }: 5 + 6 + stdenvNoCC.mkDerivation rec { 7 + pname = "mutt-wizard"; 8 + version = "3.2.1"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "LukeSmithxyz"; 12 + repo = "mutt-wizard"; 13 + rev = "v${version}"; 14 + sha256 = "1m4s0vj57hh38rdgdc28p10vnsq80dh708imvdgxbj1i96nq41r8"; 15 + }; 16 + 17 + makeFlags = [ "PREFIX=$(out)" ]; 18 + 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 + }; 26 + }
+1
pkgs/top-level/all-packages.nix
··· 25346 25346 mutt-with-sidebar = mutt.override { 25347 25347 withSidebar = true; 25348 25348 }; 25349 + mutt-wizard = callPackage ../tools/misc/mutt-wizard { }; 25349 25350 25350 25351 mwic = callPackage ../applications/misc/mwic { 25351 25352 pythonPackages = python3Packages;