mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Create botan.pc just in case
This commit is contained in:
parent
99d59d8094
commit
c6c152daad
1 changed files with 6 additions and 1 deletions
|
@ -32,8 +32,13 @@ rec {
|
||||||
inherit buildInputs;
|
inherit buildInputs;
|
||||||
|
|
||||||
/* doConfigure should be removed if not needed */
|
/* doConfigure should be removed if not needed */
|
||||||
phaseNames = ["doConfigure" "doMakeInstall"];
|
phaseNames = ["doConfigure" "doMakeInstall" "fixPkgConfig"];
|
||||||
configureCommand = "python configure.py --with-gnump --with-bzip2 --with-zlib --with-openssl --with-tr1-implementation=boost";
|
configureCommand = "python configure.py --with-gnump --with-bzip2 --with-zlib --with-openssl --with-tr1-implementation=boost";
|
||||||
|
|
||||||
|
fixPkgConfig = a.fullDepEntry ''
|
||||||
|
cd "$out"/lib/pkgconfig
|
||||||
|
ln -s botan-*.pc botan.pc || true
|
||||||
|
'' ["minInit" "doMakeInstall"];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Cryptographic algorithms library";
|
description = "Cryptographic algorithms library";
|
||||||
|
|
Loading…
Reference in a new issue