nixpkgs/pkgs/applications/networking/mailreaders/mblaze/default.nix

26 lines
640 B
Nix
Raw Normal View History

2018-01-13 12:48:37 +01:00
{ stdenv, fetchFromGitHub, libiconv }:
2018-01-06 15:59:36 +01:00
stdenv.mkDerivation rec {
name = "mblaze-${version}";
2018-01-30 22:08:57 +01:00
version = "0.3.1";
2018-01-06 15:59:36 +01:00
2018-01-13 12:48:37 +01:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv ];
2018-01-06 15:59:36 +01:00
src = fetchFromGitHub {
owner = "chneukirchen";
repo = "mblaze";
rev = "v${version}";
2018-01-30 22:08:57 +01:00
sha256 = "1a4rqadq3dm6r11v7akng1qy88zpiq5qbqdryb8df3pxkv62nm1a";
2018-01-06 15:59:36 +01:00
};
makeFlags = "PREFIX=$(out)";
meta = with stdenv.lib; {
homepage = https://github.com/chneukirchen/mblaze;
description = "Unix utilities to deal with Maildir";
license = licenses.cc0;
platforms = platforms.all;
maintainers = [ maintainers.ajgrf ];
};
}