tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
mutt-wizard: init at 3.2.1
SCOTT-HAMILTON
4 years ago
2e4df1d5
99febc68
+27
2 changed files
expand all
collapse all
unified
split
pkgs
tools
misc
mutt-wizard
default.nix
top-level
all-packages.nix
+26
pkgs/tools/misc/mutt-wizard/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
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
mutt-with-sidebar = mutt.override {
25347
withSidebar = true;
25348
};
0
25349
25350
mwic = callPackage ../applications/misc/mwic {
25351
pythonPackages = python3Packages;
···
25346
mutt-with-sidebar = mutt.override {
25347
withSidebar = true;
25348
};
25349
+
mutt-wizard = callPackage ../tools/misc/mutt-wizard { };
25350
25351
mwic = callPackage ../applications/misc/mwic {
25352
pythonPackages = python3Packages;