at v206 356 B view raw
1{stdenv, fetchurl, python}: 2 3assert stdenv.system == "i686-linux"; 4 5stdenv.mkDerivation { 6 name = "psyco-1.5.2"; 7 src = fetchurl { 8 url = mirror://sourceforge/psyco/psyco-1.5.2-src.tar.gz; 9 md5 = "bceb17423d06b573dc7b875d34e79417"; 10 }; 11 buildInputs = [python]; 12 buildPhase = "true"; 13 installPhase = "python ./setup.py install --prefix=$out"; 14}