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
···
1
1
+
{ lib
2
2
+
, stdenvNoCC
3
3
+
, fetchFromGitHub
4
4
+
}:
5
5
+
6
6
+
stdenvNoCC.mkDerivation rec {
7
7
+
pname = "mutt-wizard";
8
8
+
version = "3.2.1";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "LukeSmithxyz";
12
12
+
repo = "mutt-wizard";
13
13
+
rev = "v${version}";
14
14
+
sha256 = "1m4s0vj57hh38rdgdc28p10vnsq80dh708imvdgxbj1i96nq41r8";
15
15
+
};
16
16
+
17
17
+
makeFlags = [ "PREFIX=$(out)" ];
18
18
+
19
19
+
meta = with lib; {
20
20
+
description = "System for automatically configuring mutt and isync";
21
21
+
homepage = "https://github.com/LukeSmithxyz/mutt-wizard";
22
22
+
license = licenses.gpl3Plus;
23
23
+
maintainers = with maintainers; [ shamilton ];
24
24
+
platforms = platforms.unix;
25
25
+
};
26
26
+
}
+1
pkgs/top-level/all-packages.nix
···
25346
25346
mutt-with-sidebar = mutt.override {
25347
25347
withSidebar = true;
25348
25348
};
25349
25349
+
mutt-wizard = callPackage ../tools/misc/mutt-wizard { };
25349
25350
25350
25351
mwic = callPackage ../applications/misc/mwic {
25351
25352
pythonPackages = python3Packages;