lol
at 23.11-beta 27 lines 654 B view raw
1{ lib, stdenv, fetchFromGitHub, libxcb, xcbutil, xcbutilwm, git }: 2 3stdenv.mkDerivation rec { 4 pname = "xtitle"; 5 version = "0.4.4"; 6 7 src = fetchFromGitHub { 8 owner = "baskerville"; 9 repo = "xtitle"; 10 rev = version; 11 hash = "sha256-SVfM2vCCacgchXj0c0sPk3VR6DUI4R0ofFnxJSY4oDg="; 12 }; 13 14 postPatch = '' 15 sed -i "s|/usr/local|$out|" Makefile 16 ''; 17 18 buildInputs = [ libxcb git xcbutil xcbutilwm ]; 19 20 meta = with lib; { 21 description = "Outputs X window titles"; 22 homepage = "https://github.com/baskerville/xtitle"; 23 maintainers = with maintainers; [ meisternu ]; 24 license = "Custom"; 25 platforms = platforms.linux; 26 }; 27}