1 { lib, stdenv, fetchFromGitHub, cairo }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "17yjdgdd080fsf5r1wzgk6vvzwsa15gcwc9z64v7x588jm1ryy3k";
14 buildInputs = [ cairo ];
16 prePatch = ''sed -i "s@/usr/local@$out@" Makefile'';
19 description = "Compute text widths";
20 homepage = "https://github.com/baskerville/txtw";
21 maintainers = with maintainers; [ lihop ];
22 license = licenses.unlicense;
23 platforms = platforms.linux;