2003-04-23 23:21:06 +02:00
|
|
|
Descr(
|
2003-05-26 00:43:33 +02:00
|
|
|
[ Bind("pkgId", "pan-0.14.0")
|
|
|
|
, Bind("releaseId", "1")
|
2003-04-23 23:21:06 +02:00
|
|
|
|
* Cleaned up the semantics of Fix expressions.
* Conditionals and variables in Fix expressions. This allows, e.g.,
Descr(
[ Bind("pkgId", "subversion-0.21.0")
, Bind("httpsClient", Bool(True))
, Bind("httpServer", Bool(True))
, Bind("ssl", If(Var("httpsClient"), Fix("./openssl-0.9.7b.fix"), ""))
, Bind("httpd", If(Var("httpServer"), Fix("./httpd-2.0.45.fix"), ""))
...
])
which introduces domain feature variables httpsClient and httpServer
(i.e., whether Subversion is built with https client and webdav
server support); the values of the variables influences package
dependencies and the build scripts.
The next step is to allow that packages can express constraints on
each other. E.g., StrategoXT is dependent on an ATerm library with
the "gcc" variant enabled. In fact, this may cause several
Nix instantiations to be created from a single Fix descriptor. If
possible, Fix should try to find the least set of instantiations
that obeys the constraints.
svn path=/nix/trunk/test/; revision=53
2003-04-25 17:33:50 +02:00
|
|
|
, Bind("pkgconfig", Fix("./pkgconfig-0.15.0.fix"))
|
* Xft support in gtk+ (for anti-aliased fonts :-) ).
The problem of transitive imports needs to be adressed, though, as
evidenced by, e.g., the descriptor for pan. That is, if C depends
on library B, and B depends on library A, then C also depends on
library A. However, this breaks modularity: C should not have to
declare a dependency on A explicitly.
The solution is to have B re-export A, e.g., by creating symlinks
from B to the files in A.
svn path=/nixpkgs/trunk/; revision=68
2003-05-28 02:02:55 +02:00
|
|
|
, Bind("libxml", Fix("./libxml2-2.5.7.fix"))
|
* Cleaned up the semantics of Fix expressions.
* Conditionals and variables in Fix expressions. This allows, e.g.,
Descr(
[ Bind("pkgId", "subversion-0.21.0")
, Bind("httpsClient", Bool(True))
, Bind("httpServer", Bool(True))
, Bind("ssl", If(Var("httpsClient"), Fix("./openssl-0.9.7b.fix"), ""))
, Bind("httpd", If(Var("httpServer"), Fix("./httpd-2.0.45.fix"), ""))
...
])
which introduces domain feature variables httpsClient and httpServer
(i.e., whether Subversion is built with https client and webdav
server support); the values of the variables influences package
dependencies and the build scripts.
The next step is to allow that packages can express constraints on
each other. E.g., StrategoXT is dependent on an ATerm library with
the "gcc" variant enabled. In fact, this may cause several
Nix instantiations to be created from a single Fix descriptor. If
possible, Fix should try to find the least set of instantiations
that obeys the constraints.
svn path=/nix/trunk/test/; revision=53
2003-04-25 17:33:50 +02:00
|
|
|
, Bind("glib", Fix("./glib-2.2.1.fix"))
|
|
|
|
, Bind("atk", Fix("./atk-1.2.0.fix"))
|
* Xft support in gtk+ (for anti-aliased fonts :-) ).
The problem of transitive imports needs to be adressed, though, as
evidenced by, e.g., the descriptor for pan. That is, if C depends
on library B, and B depends on library A, then C also depends on
library A. However, this breaks modularity: C should not have to
declare a dependency on A explicitly.
The solution is to have B re-export A, e.g., by creating symlinks
from B to the files in A.
svn path=/nixpkgs/trunk/; revision=68
2003-05-28 02:02:55 +02:00
|
|
|
, Bind("freetype", Fix("./freetype-2.1.4.fix"))
|
|
|
|
, Bind("fontconfig", Fix("./fontconfig-20021121.fix"))
|
|
|
|
, Bind("Xft", Fix("./Xft-20021121.fix"))
|
* Cleaned up the semantics of Fix expressions.
* Conditionals and variables in Fix expressions. This allows, e.g.,
Descr(
[ Bind("pkgId", "subversion-0.21.0")
, Bind("httpsClient", Bool(True))
, Bind("httpServer", Bool(True))
, Bind("ssl", If(Var("httpsClient"), Fix("./openssl-0.9.7b.fix"), ""))
, Bind("httpd", If(Var("httpServer"), Fix("./httpd-2.0.45.fix"), ""))
...
])
which introduces domain feature variables httpsClient and httpServer
(i.e., whether Subversion is built with https client and webdav
server support); the values of the variables influences package
dependencies and the build scripts.
The next step is to allow that packages can express constraints on
each other. E.g., StrategoXT is dependent on an ATerm library with
the "gcc" variant enabled. In fact, this may cause several
Nix instantiations to be created from a single Fix descriptor. If
possible, Fix should try to find the least set of instantiations
that obeys the constraints.
svn path=/nix/trunk/test/; revision=53
2003-04-25 17:33:50 +02:00
|
|
|
, Bind("pango", Fix("./pango-1.2.1.fix"))
|
|
|
|
, Bind("gtk", Fix("./gtk+-2.2.1.fix"))
|
|
|
|
, Bind("gnet", Fix("./gnet-1.1.8.fix"))
|
|
|
|
, Bind("pspell", Fix("./pspell-.12.2.fix"))
|
|
|
|
, Bind("gtkspell", Fix("./gtkspell-2.0.2.fix"))
|
2003-04-23 23:21:06 +02:00
|
|
|
|
2003-05-26 00:43:33 +02:00
|
|
|
, Bind("src", Url("b2702adadb84c2e0d52d2bb029c05206", "http://pan.rebelbase.com/download/releases/0.14.0/SOURCE/pan-0.14.0.tar.bz2"))
|
|
|
|
, Bind("build", Local("../build/pan-build-2.sh"))
|
2003-04-23 23:21:06 +02:00
|
|
|
]
|
|
|
|
)
|