lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 42 lines 1.5 kB view raw
1{ lib, stdenv, fetchurl, automake, autoconf, pkg-config, gtk3 }: 2 3stdenv.mkDerivation rec { 4 pname = "gsimplecal"; 5 version = "2.2"; 6 7 src = fetchurl { 8 url = "https://github.com/dmedvinsky/gsimplecal/archive/v${version}.tar.gz"; 9 sha256 = "sha256-f19cnTX83LZT2d01B1EdWSaHcfHqpFPTo5glYkAokq8="; 10 }; 11 12 postPatch = '' 13 sed -ie '/sys\/sysctl.h/d' src/Unique.cpp 14 ''; 15 16 enableParallelBuilding = true; 17 18 nativeBuildInputs = [ pkg-config ]; 19 buildInputs = [ automake autoconf gtk3 ]; 20 21 preConfigure = "./autogen.sh"; 22 23 meta = { 24 homepage = "http://dmedvinsky.github.io/gsimplecal/"; 25 description = "Lightweight calendar application written in C++ using GTK"; 26 longDescription = '' 27 gsimplecal was intentionally made for use with tint2 panel in the 28 openbox environment to be launched upon clock click, but of course it 29 will work without it. In fact, binding the gsimplecal to some hotkey in 30 you window manager will probably make you happy. The thing is that when 31 it is started it first shows up, when you run it again it closes the 32 running instance. In that way it is very easy to integrate anywhere. No 33 need to write some wrapper scripts or whatever. 34 35 Also, you can configure it to not only show the calendar, but also 36 display multiple clocks for different world time zones. 37 ''; 38 license = lib.licenses.bsd3; 39 maintainers = [ lib.maintainers.romildo ]; 40 platforms = lib.platforms.linux; 41 }; 42}