mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 06:28:50 +03:00
82e678362f
svn path=/nixpkgs/trunk/; revision=4335
13 lines
239 B
Bash
13 lines
239 B
Bash
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 || exit 1
|
|
}
|
|
|
|
genericBuild
|