3d519c2bed
- unison uses a wrapper script to add font-schumacher-misc to the local X font path if the font isn't already present; this is necessary for it to work, but not terribly nice ... * lablgtk is a dependency of unison - handling of library dirs with ocaml is a hack so far; in principle, ocaml needs a general setup for library dirs like ghc svn path=/nixpkgs/trunk/; revision=9094
15 lines
400 B
Nix
15 lines
400 B
Nix
{stdenv, fetchurl, ocaml, pkgconfig, gtk}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "lablgtk-2.6.0";
|
|
src = fetchurl {
|
|
url = http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/dist/lablgtk-2.6.0.tar.gz;
|
|
sha256 = "3694bc1e288ce0903af6c96a2790d2340ba38fa51b18090062ede75137d97876";
|
|
};
|
|
|
|
buildInputs = [ocaml pkgconfig gtk];
|
|
|
|
configureFlags = "--with-libdir=$(out)/lib/ocaml";
|
|
buildFlags = "world";
|
|
}
|