nixpkgs/pkgs/tools/misc/chafa/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.5 KiB
Nix
Raw Normal View History

2021-05-12 20:41:50 +00:00
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config, which
, libxslt, libxml2, docbook_xml_dtd_412, docbook_xsl, glib, imagemagick
, Foundation
}:
2019-03-27 03:43:06 +00:00
stdenv.mkDerivation rec {
2024-01-09 09:41:05 +00:00
version = "1.14.0";
2019-03-27 03:43:06 +00:00
pname = "chafa";
src = fetchFromGitHub {
owner = "hpjansson";
repo = "chafa";
rev = version;
2024-01-09 09:41:05 +00:00
sha256 = "sha256-7l8+WD5/5uBXVnhwqiEScIEQ1dg0W2zqqZJ2AeKCZRU=";
2019-03-27 03:43:06 +00:00
};
nativeBuildInputs = [ autoconf
automake
libtool
2021-01-17 03:51:22 +00:00
pkg-config
2019-03-27 03:43:06 +00:00
which
libxslt
libxml2
docbook_xml_dtd_412
docbook_xsl
];
2021-05-12 20:41:50 +00:00
buildInputs = [ glib imagemagick ]
++ lib.optional stdenv.isDarwin Foundation;
2019-03-27 03:43:06 +00:00
patches = [ ./xmlcatalog_patch.patch ];
preConfigure = ''
2023-04-06 01:50:00 +00:00
substituteInPlace ./autogen.sh --replace pkg-config '$PKG_CONFIG'
NOCONFIGURE=1 ./autogen.sh
2019-03-27 03:43:06 +00:00
'';
configureFlags = [ "--enable-man"
"--with-xml-catalog=${docbook_xml_dtd_412}/xml/dtd/docbook/catalog.xml"
];
# https://github.com/NixOS/nixpkgs/pull/240893#issuecomment-1635347507
NIX_LDFLAGS = [ "-lwebp" ];
meta = with lib; {
description = "Terminal graphics for the 21st century";
2020-03-04 02:00:13 +00:00
homepage = "https://hpjansson.org/chafa/";
2019-03-27 03:43:06 +00:00
license = licenses.lgpl3Plus;
platforms = platforms.all;
maintainers = [ maintainers.mog ];
2023-11-27 01:17:53 +00:00
mainProgram = "chafa";
2019-03-27 03:43:06 +00:00
};
}