33 lines
949 B
Nix
33 lines
949 B
Nix
{ stdenv, lib, fetchFromGitHub, installShellFiles, libiconv, ruby ? null }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mblaze";
|
|
version = "1.0";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
buildInputs = [ ruby ] ++ lib.optionals stdenv.isDarwin [ libiconv ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "leahneukirchen";
|
|
repo = "mblaze";
|
|
rev = "v${version}";
|
|
sha256 = "0hxy3mjjv4hg856sl1r15fdmqaw4s9c26b3lidsd5x0kpqy601ai";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion contrib/_mblaze
|
|
'' + lib.optionalString (ruby != null) ''
|
|
install -Dt $out/bin contrib/msuck contrib/mblow
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/leahneukirchen/mblaze";
|
|
description = "Unix utilities for processing and interacting with mail messages which are stored in maildir folders";
|
|
license = licenses.cc0;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.ajgrf ];
|
|
};
|
|
}
|