about summary refs log tree commit diff
path: root/pkgs/mutt-wizard/default.nix
blob: badad4f7e88b071cd11b4f06b85ff54e427807a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchgit }:

with stdenv.lib;

stdenv.mkDerivation rec {
  name = "mutt-wizard";

  src = fetchgit {
    url = "https://github.com/LukeSmithXYZ/mutt-wizard";
    rev = "289533279b21f0fc6ecbdf03ebde2a67741e3ded";
    sha256 = "1bb9429wabv85zja2y89vhj15qcd10acbg5k6ylilw067wzs9ks5";
  };


  buildPhase = ''
    sed -i 's/(PREFIX)/(out)/g' Makefile
    make PREFIX=$out SHELL=$SHELL install
  '';

  meta = {
    homepage = "https://github.com/LukeSmithXYZ/mutt-wizard";
    description = "A script for automatically configuring mutt";
    license = licenses.gpl3;
    platforms = platforms.linux;
  };
}