* No idea what this was for.
svn path=/nixpkgs/trunk/; revision=10779
This commit is contained in:
parent
96ec69e4f5
commit
a1bcd5d936
@ -1,10 +0,0 @@
|
|||||||
source $stdenv/setup
|
|
||||||
|
|
||||||
installPhase() {
|
|
||||||
make install
|
|
||||||
cd $out/bin; ln -s flex lex
|
|
||||||
cd $out/lib; ln -s libfl.a libl.a
|
|
||||||
}
|
|
||||||
|
|
||||||
installPhase=installPhase
|
|
||||||
genericBuild
|
|
@ -1,13 +0,0 @@
|
|||||||
{stdenv, fetchurl, yacc}:
|
|
||||||
|
|
||||||
assert yacc != null;
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "flex-2.5.4a";
|
|
||||||
builder = ./builder.sh;
|
|
||||||
src = fetchurl {
|
|
||||||
url = http://nix.cs.uu.nl/dist/tarballs/flex-2.5.4a.tar.gz;
|
|
||||||
md5 = "bd8753d0b22e1f4ec87a553a73021adf";
|
|
||||||
};
|
|
||||||
buildInputs = [yacc];
|
|
||||||
}
|
|
@ -1,16 +0,0 @@
|
|||||||
# !!! this should be moved to default.nix eventually (but I delay
|
|
||||||
# doing that since it would cause a rebuild of lots of stuff).
|
|
||||||
|
|
||||||
{stdenv, fetchurl, yacc, m4}:
|
|
||||||
|
|
||||||
assert yacc != null && m4 != null;
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "flex-2.5.31";
|
|
||||||
src = fetchurl {
|
|
||||||
url = http://nix.cs.uu.nl/dist/tarballs/flex-2.5.31.tar.bz2;
|
|
||||||
md5 = "363dcc4afc917dc51306eb9d3de0152f";
|
|
||||||
};
|
|
||||||
buildInputs = [yacc];
|
|
||||||
propagatedBuildInputs = [m4];
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user