nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenvNoCC,
4 fetchFromGitHub,
5}:
6
7stdenvNoCC.mkDerivation rec {
8 pname = "mutt-wizard";
9 version = "3.3.1";
10
11 src = fetchFromGitHub {
12 owner = "LukeSmithxyz";
13 repo = "mutt-wizard";
14 rev = "v${version}";
15 sha256 = "sha256-1/+awwoAqD8Xm3hULcbpeTaLOHVuYRA4PPr3cq5Gy20=";
16 };
17
18 makeFlags = [ "PREFIX=$(out)" ];
19
20 meta = with lib; {
21 description = "System for automatically configuring mutt and isync";
22 homepage = "https://github.com/LukeSmithxyz/mutt-wizard";
23 license = licenses.gpl3Plus;
24 maintainers = with maintainers; [ shamilton ];
25 platforms = platforms.unix;
26 };
27}