nixpkgs/pkgs/development/libraries/openssl/builder.sh

13 lines
229 B
Bash
Raw Normal View History

source $stdenv/setup
configureScript=./config
configureFlags=shared
postInstall=postInstall
postInstall() {
# Bug fix: openssl does a `chmod 644' on the pkgconfig directory.
chmod 755 $out/lib/pkgconfig
}
genericBuild