python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / mencal / default.nix
blobc4973b275534834a9818d374db87f9ec00b4018f
1 { lib, stdenv, fetchurl, perl }:
3 stdenv.mkDerivation rec {
4   pname = "mencal";
5   version = "3.0";
7   src = fetchurl {
8     url = "http://kyberdigi.cz/projects/mencal/files/mencal-${version}.tar.gz";
9     sha256 = "9328d0b2f3f57847e8753c5184531f4832be7123d1b6623afdff892074c03080";
10   };
12   installPhase = ''
13     mkdir -p $out/bin
14     cp mencal $out/bin/
15   '';
17   buildInputs = [ perl ];
19   meta = with lib; {
20     description = "Menstruation calendar";
21     longDescription = ''
22       Mencal is a simple variation of the well-known unix command cal.
23       The main difference is that you can have some periodically repeating
24       days highlighted in color. This can be used to track
25       menstruation (or other) cycles conveniently.
26     '';
27     homepage = "http://www.kyberdigi.cz/projects/mencal/english.html";
28     license = licenses.gpl2;
29     maintainers = [ maintainers.mmahut ];
30     platforms = platforms.all;
31   };