nixpkgs/pkgs/tools/misc/mutt-wizard/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
612 B
Nix
Raw Normal View History

2021-06-02 11:58:38 +02:00
{ lib
, stdenvNoCC
, fetchFromGitHub
}:
stdenvNoCC.mkDerivation rec {
pname = "mutt-wizard";
2022-07-29 03:20:54 +02:00
version = "3.3.1";
2021-06-02 11:58:38 +02:00
src = fetchFromGitHub {
owner = "LukeSmithxyz";
repo = "mutt-wizard";
rev = "v${version}";
2022-07-29 03:20:54 +02:00
sha256 = "sha256-1/+awwoAqD8Xm3hULcbpeTaLOHVuYRA4PPr3cq5Gy20=";
2021-06-02 11:58:38 +02:00
};
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;
};
}