summary refs log tree commit diff
path: root/pkgs/os-specific/linux/modutils/default.nix
blob: 19f9efae19ce3e1b21abcb607ada73aafeee6443 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl, bison, flex}:

stdenv.mkDerivation {
  name = "modutils-2.4.25";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/modutils-2.4.25.tar.bz2;
    md5 = "2c0cca3ef6330a187c6ef4fe41ecaa4d";
  };
  buildInputs = [bison flex];
}