Add mlmmj package and nixos module.
This commit is contained in:
committed by
Michael Raskin
parent
c0da615c02
commit
1615be91ef
21
pkgs/servers/mail/mlmmj/default.nix
Normal file
21
pkgs/servers/mail/mlmmj/default.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ stdenv, fetchurl, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "mlmmj-${version}";
|
||||
version = "1.2.18.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://mlmmj.org/releases/${name}.tar.gz";
|
||||
sha256 = "336b6b20a6d7f0dcdc7445ecea0fe4bdacee241f624fcc710b4341780f35e383";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://mlmmj.org;
|
||||
description = "Mailing List Management Made Joyful";
|
||||
maintainers = [ maintainers.edwtjo ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.mit;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user