flex_2_5_35: fix 404

This commit is contained in:
volth 2017-07-28 20:17:18 +00:00 committed by Franz Pletz
parent b2608b8910
commit d50437ba3e
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -1,14 +1,14 @@
{ stdenv, fetchurl, bison, m4 }:
{ stdenv, fetchurl, autoreconfHook, flex, bison, texinfo, help2man, m4 }:
stdenv.mkDerivation {
name = "flex-2.5.35";
src = fetchurl {
url = mirror://sourceforge/flex/flex-2.5.35.tar.bz2;
sha256 = "0ysff249mwhq0053bw3hxh58djc0gy7vjan2z1krrf9n5d5vvv0b";
url = https://github.com/westes/flex/archive/flex-2-5-35.tar.gz;
sha256 = "0wh06nix8bd4w1aq4k2fbbkdq5i30a9lxz3xczf3ff28yy0kfwzm";
};
buildInputs = [ bison ];
nativeBuildInputs = [ flex bison texinfo help2man autoreconfHook ];
propagatedNativeBuildInputs = [ m4 ];