mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
* Use the `inherit' syntax.
svn path=/nixpkgs/trunk/; revision=740
This commit is contained in:
parent
3f6bf521fc
commit
9d9c76529f
2 changed files with 136 additions and 424 deletions
|
@ -22,16 +22,11 @@ derivation {
|
||||||
md5 = "048c4d17d5880dc8f3699020eac56224";
|
md5 = "048c4d17d5880dc8f3699020eac56224";
|
||||||
};
|
};
|
||||||
|
|
||||||
localServer = localServer;
|
|
||||||
httpServer = httpServer;
|
|
||||||
sslSupport = sslSupport;
|
|
||||||
swigBindings = swigBindings;
|
|
||||||
|
|
||||||
stdenv = stdenv;
|
|
||||||
openssl = if sslSupport then openssl else null;
|
openssl = if sslSupport then openssl else null;
|
||||||
httpd = if httpServer then httpd else null;
|
httpd = if httpServer then httpd else null;
|
||||||
expat = expat;
|
|
||||||
db4 = if localServer then db4 else null;
|
db4 = if localServer then db4 else null;
|
||||||
swig = if swigBindings then swig else null;
|
swig = if swigBindings then swig else null;
|
||||||
python = if swigBindings then swig.python else null;
|
python = if swigBindings then swig.python else null;
|
||||||
|
|
||||||
|
inherit stdenv expat localServer httpServer sslSupport swigBindings;
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue