nixpkgs/pkgs/system/system.fix
Eelco Dolstra d883e86e1c * Added graphviz.
svn path=/nixpkgs/trunk/; revision=378
2003-09-03 10:32:30 +00:00

34 lines
1.5 KiB
Plaintext

Function(
[ "subversion", "strategoxt", "pan", "mplayer", "sylpheed", "libxslt", "libxml"
, "docbook", "httpd", "firebird", "graphviz"
],
Package(
[ ("name", "system")
, ("build", Relative("system/populate-linkdirs.pl"))
, ("actSubversion",
If(Var("subversion"),
Call(IncludeFix("subversion/subversion.fix"),
[ ("localServer", True)
, ("httpsClient", True)
, ("httpServer", True)
, ("pythonBindings", False)
]),
""))
, ("actStrategoXT", If(Var("strategoxt"), IncludeFix("strategoxt-0.9.2/strategoxt.fix"), ""))
, ("actATerm", If(Var("strategoxt"), IncludeFix("aterm/aterm.fix"), ""))
, ("actPan", If(Var("pan"), IncludeFix("pan/pan.fix"), ""))
, ("actMPlayer", If(Var("mplayer"), IncludeFix("MPlayer/MPlayer.fix"), ""))
, ("actSylpheed", If(Var("sylpheed"), IncludeFix("sylpheed/sylpheed.fix"), ""))
, ("actLibXslt", If(Var("libxslt"), IncludeFix("libxslt/libxslt.fix"), ""))
, ("actLibXml", If(Var("libxml"), IncludeFix("libxml2/libxml2.fix"), ""))
, ("actDocbookXml", If(Var("docbook"), IncludeFix("docbook-xml/docbook-xml.fix"), ""))
, ("actDocbookXsl", If(Var("docbook"), IncludeFix("docbook-xsl/docbook-xsl.fix"), ""))
, ("actHttpd", If(Var("httpd"), IncludeFix("httpd/httpd.fix"), ""))
, ("actFirebird", If(Var("firebird"), IncludeFix("firebird/firebird.fix"), ""))
, ("actGraphviz", If(Var("graphviz"), IncludeFix("graphviz/graphviz.fix"), ""))
]
)
)