biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / txtw / default.nix
blob9f8783491b11a7040dbb59d12a0effa25479c0a6
1 { lib, stdenv, fetchFromGitHub, cairo }:
3 stdenv.mkDerivation rec {
4   version = "0.4";
5   pname = "txtw";
7   src = fetchFromGitHub {
8     owner = "baskerville";
9     repo = "txtw";
10     rev = version;
11     sha256 = "17yjdgdd080fsf5r1wzgk6vvzwsa15gcwc9z64v7x588jm1ryy3k";
12   };
14   buildInputs = [ cairo ];
16   prePatch = ''sed -i "s@/usr/local@$out@" Makefile'';
18   meta = with lib; {
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;
24     mainProgram = "txtw";
25   };