mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
26 lines
595 B
Nix
26 lines
595 B
Nix
{ 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 stdenv.lib; {
|
|
description = "Compute text widths";
|
|
homepage = "https://github.com/baskerville/txtw";
|
|
maintainers = with maintainers; [ lihop ];
|
|
license = licenses.unlicense;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|