9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
69 lines
1.2 KiB
Nix
69 lines
1.2 KiB
Nix
{ fetchFromGitHub
|
|
, stdenv
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, gettext
|
|
, python3
|
|
, texinfo
|
|
, help2man
|
|
, libyaml
|
|
, perl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "liblouis";
|
|
version = "3.16.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "liblouis";
|
|
repo = "liblouis";
|
|
rev = "v${version}";
|
|
sha256 = "0q9ixy8cjgd2d2lzxgkfd4chzr5j1bz783mg10pnwviyg6k630m5";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "man" "info" "doc" ];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
gettext
|
|
python3
|
|
# Docs, man, info
|
|
texinfo
|
|
help2man
|
|
];
|
|
|
|
buildInputs = [
|
|
# lou_checkYaml
|
|
libyaml
|
|
# maketable.d
|
|
perl
|
|
];
|
|
|
|
configureFlags = [
|
|
# Required by Python bindings
|
|
"--enable-ucs4"
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs tests
|
|
substituteInPlace python/louis/__init__.py.in --replace "###LIBLOUIS_SONAME###" "$out/lib/liblouis.so"
|
|
'';
|
|
|
|
postInstall = ''
|
|
pushd python
|
|
python setup.py install --prefix="$out" --optimize=1
|
|
popd
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Open-source braille translator and back-translator";
|
|
homepage = "http://liblouis.org/";
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|