nixpkgs/pkgs/applications/misc/gcal/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ncurses, gettext, fetchpatch }:
2017-12-02 16:34:18 +00:00
stdenv.mkDerivation rec {
pname = "gcal";
2017-12-02 16:34:18 +00:00
version = "4.1";
src = fetchurl {
url = "mirror://gnu/gcal/${pname}-${version}.tar.xz";
2017-12-02 16:34:18 +00:00
sha256 = "1av11zkfirbixn05hyq4xvilin0ncddfjqzc4zd9pviyp506rdci";
};
patches = [
(fetchpatch {
url = "https://src.fedoraproject.org/rpms/gcal/raw/master/f/gcal-glibc-no-libio.patch";
sha256 = "0l4nw9kgzsay32rsdwvs75pbp4fhx6pfm85paynfbd20cdm2n2kv";
})
];
2023-11-28 11:58:50 +00:00
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-implicit-function-declaration";
2017-12-02 16:34:18 +00:00
enableParallelBuilding = true;
buildInputs = [ ncurses ] ++ lib.optional stdenv.isDarwin gettext;
2017-12-02 16:34:18 +00:00
meta = {
description = "Program for calculating and printing calendars";
longDescription = ''
Gcal is the GNU version of the trusty old cal(1). Gcal is a
program for calculating and printing calendars. Gcal displays
hybrid and proleptic Julian and Gregorian calendar sheets. It
also displays holiday lists for many countries around the globe.
'';
homepage = "https://www.gnu.org/software/gcal/";
2021-01-15 05:42:41 +00:00
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.romildo ];
2017-12-02 16:34:18 +00:00
};
}