mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 12:23:55 +00:00
Merge pull request #125355 from SCOTT-HAMILTON/mutt-wizard
mutt-wizard: init at 3.2.1
This commit is contained in:
commit
5b06530b0a
26
pkgs/tools/misc/mutt-wizard/default.nix
Normal file
26
pkgs/tools/misc/mutt-wizard/default.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
@ -25366,6 +25366,7 @@ in
|
||||
mutt-with-sidebar = mutt.override {
|
||||
withSidebar = true;
|
||||
};
|
||||
mutt-wizard = callPackage ../tools/misc/mutt-wizard { };
|
||||
|
||||
mwic = callPackage ../applications/misc/mwic {
|
||||
pythonPackages = python3Packages;
|
||||
|
Loading…
Reference in New Issue
Block a user