43 lines
1.4 KiB
Nix
43 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, automake, autoconf, pkg-config, gtk3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gsimplecal";
|
|
version = "2.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/dmedvinsky/gsimplecal/archive/v${version}.tar.gz";
|
|
sha256 = "sha256-f19cnTX83LZT2d01B1EdWSaHcfHqpFPTo5glYkAokq8=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -ie '/sys\/sysctl.h/d' src/Unique.cpp
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ automake autoconf gtk3 ];
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
meta = {
|
|
homepage = "http://dmedvinsky.github.io/gsimplecal/";
|
|
description = "Lightweight calendar application written in C++ using GTK";
|
|
longDescription = ''
|
|
gsimplecal was intentionally made for use with tint2 panel in the
|
|
openbox environment to be launched upon clock click, but of course it
|
|
will work without it. In fact, binding the gsimplecal to some hotkey in
|
|
you window manager will probably make you happy. The thing is that when
|
|
it is started it first shows up, when you run it again it closes the
|
|
running instance. In that way it is very easy to integrate anywhere. No
|
|
need to write some wrapper scripts or whatever.
|
|
|
|
Also, you can configure it to not only show the calendar, but also
|
|
display multiple clocks for different world time zones.
|
|
'';
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ lib.maintainers.romildo ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|