nixpkgs/pkgs/development/libraries/lablgtk/default.nix
Michael Raskin d139e5244c Added Monotone-Viz, viewer for monotone histories.
svn path=/nixpkgs/trunk/; revision=12034
2008-06-11 06:12:18 +00:00

15 lines
431 B
Nix

{stdenv, fetchurl, ocaml, pkgconfig, gtk, libgnomecanvas}:
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 libgnomecanvas];
configureFlags = "--with-libdir=$(out)/lib/ocaml";
buildFlags = "world";
}