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

24 lines
560 B
Nix
Raw Normal View History

2018-01-06 06:59:36 -08:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "mblaze-${version}";
2018-01-12 12:15:07 -08:00
version = "0.3";
2018-01-06 06:59:36 -08:00
src = fetchFromGitHub {
owner = "chneukirchen";
repo = "mblaze";
rev = "v${version}";
2018-01-12 12:15:07 -08:00
sha256 = "1jrn81rvw6qanlfppc12dkvpbmidzrq1lx3rfhvcsna55k3gjyw9";
2018-01-06 06:59:36 -08: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 ];
};
}