at v192 558 B view raw
1{stdenv, fetchurl, python}: 2 3stdenv.mkDerivation rec { 4 version = "1.0.2"; 5 name = "4suite-${version}"; 6 src = fetchurl { 7 url = "mirror://sourceforge/foursuite/4Suite-XML-${version}.tar.bz2"; 8 sha256 = "0g5cyqxhhiqnvqk457k8sb97r18pwgx6gff18q5296xd3zf4cias"; 9 }; 10 buildInputs = [python]; 11 buildPhase = "true"; 12 installPhase = "python ./setup.py install --prefix=$out"; 13 14 # None of the tools installed to bin/ work. They all throw an exception 15 # similar to this: 16 # ImportError: No module named Ft.Xml.XPath._4xpath 17 meta.broken = true; 18}