lol
fork

Configure Feed

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

at 17.09-beta 23 lines 633 B view raw
1{ stdenv, fetchurl, libxcb, xcbutil, xcbutilwm, git }: 2 3stdenv.mkDerivation rec { 4 name = "xtitle-0.3"; 5 6 src = fetchurl { 7 url = "https://github.com/baskerville/xtitle/archive/0.3.tar.gz"; 8 sha256 = "07r36f4ad1q0dpkx3ykd49xlmi24d8mjqwh40j228k81wsvzayl1"; 9 }; 10 11 12 buildInputs = [ libxcb git xcbutil xcbutilwm ]; 13 14 prePatch = ''sed -i "s@/usr/local@$out@" Makefile''; 15 16 meta = { 17 description = "Outputs X window titles"; 18 homepage = https://github.com/baskerville/xtitle; 19 maintainers = [ stdenv.lib.maintainers.meisternu ]; 20 license = "Custom"; 21 platforms = stdenv.lib.platforms.linux; 22 }; 23}