Merge #241336: ncurses: add .pc files for libtinfo / libtic

...into staging
This commit is contained in:
Vladimír Čunát 2023-07-17 10:58:41 +02:00
commit a9cfd9289f
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -139,6 +139,13 @@ stdenv.mkDerivation (finalAttrs: {
done done
done done
# add pkg-config aliases for libraries that are built-in to libncurses(w)
for library in tinfo tic; do
for suffix in "" w; do
ln -svf ncurses$suffix.pc $dev/lib/pkgconfig/$library$suffix.pc
done
done
# move some utilities to $bin # move some utilities to $bin
# these programs are used at runtime and don't really belong in $dev # these programs are used at runtime and don't really belong in $dev
moveToOutput "bin/clear" "$out" moveToOutput "bin/clear" "$out"