mencal: init at 3.0
This commit is contained in:
parent
ca8169a6f1
commit
9844e027c4
3 changed files with 34 additions and 0 deletions
|
@ -443,6 +443,7 @@
|
|||
mjanczyk = "Marcin Janczyk <m@dragonvr.pl>";
|
||||
mjp = "Mike Playle <mike@mythik.co.uk>"; # github = "MikePlayle";
|
||||
mlieberman85 = "Michael Lieberman <mlieberman85@gmail.com>";
|
||||
mmahut = "Marek Mahut <marek.mahut@gmail.com>";
|
||||
moaxcp = "John Mercier <moaxcp@gmail.com>";
|
||||
modulistic = "Pablo Costa <modulistic@gmail.com>";
|
||||
mog = "Matthew O'Gorman <mog-lists@rldn.net>";
|
||||
|
|
31
pkgs/applications/misc/mencal/default.nix
Normal file
31
pkgs/applications/misc/mencal/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ stdenv, fetchurl, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mencal-3.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://kyberdigi.cz/projects/mencal/files/${name}.tar.gz";
|
||||
sha256 = "9328d0b2f3f57847e8753c5184531f4832be7123d1b6623afdff892074c03080";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp mencal $out/bin/
|
||||
'';
|
||||
|
||||
buildInputs = [ perl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Menstruation calendar";
|
||||
longDescription = ''
|
||||
Mencal is a simple variation of the well-known unix command cal.
|
||||
The main difference is that you can have some periodically repeating
|
||||
days highlighted in color. This can be used to track
|
||||
menstruation (or other) cycles conveniently.
|
||||
'';
|
||||
homepage = "http://www.kyberdigi.cz/projects/mencal/english.html";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.mmahut ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -3459,6 +3459,8 @@ with pkgs;
|
|||
|
||||
memo = callPackage ../applications/misc/memo/default.nix { };
|
||||
|
||||
mencal = callPackage ../applications/misc/mencal/default.nix { } ;
|
||||
|
||||
metamorphose2 = callPackage ../applications/misc/metamorphose2 { };
|
||||
|
||||
metar = callPackage ../applications/misc/metar { };
|
||||
|
|
Loading…
Reference in a new issue