biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / xtitle / default.nix
blob94e650144956ad856739ab759e3e5a7050b0c343
1 { lib, stdenv, fetchFromGitHub, libxcb, xcbutil, xcbutilwm, git }:
3 stdenv.mkDerivation rec {
4   pname = "xtitle";
5   version = "0.4.4";
7   src = fetchFromGitHub {
8     owner = "baskerville";
9     repo = "xtitle";
10     rev = version;
11     hash = "sha256-SVfM2vCCacgchXj0c0sPk3VR6DUI4R0ofFnxJSY4oDg=";
12   };
14   postPatch = ''
15     sed -i "s|/usr/local|$out|" Makefile
16   '';
18   buildInputs = [ libxcb git xcbutil xcbutilwm ];
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     mainProgram = "xtitle";
27   };