depot/third_party/nixpkgs/pkgs/tools/misc/txtw/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

26 lines
619 B
Nix

{ lib, stdenv, fetchFromGitHub, cairo }:
stdenv.mkDerivation rec {
version = "0.4";
pname = "txtw";
src = fetchFromGitHub {
owner = "baskerville";
repo = "txtw";
rev = version;
sha256 = "17yjdgdd080fsf5r1wzgk6vvzwsa15gcwc9z64v7x588jm1ryy3k";
};
buildInputs = [ cairo ];
prePatch = ''sed -i "s@/usr/local@$out@" Makefile'';
meta = with lib; {
description = "Compute text widths";
homepage = "https://github.com/baskerville/txtw";
maintainers = with maintainers; [ lihop ];
license = licenses.unlicense;
platforms = platforms.linux;
mainProgram = "txtw";
};
}