mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
89686a2252
svn path=/nixpkgs/trunk/; revision=3332
13 lines
234 B
Bash
13 lines
234 B
Bash
. $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 || exit 1
|
|
}
|
|
|
|
genericBuild
|