summary refs log tree commit diff
path: root/pkgs/os-specific/linux/bridge_utils/default.nix
blob: cb8b033c1e36a192ad09fd571bec7b180afb1dd9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, autoconf, automake }:

stdenv.mkDerivation {
  name = "bridge-utils-1.2";

  src = fetchurl {
    url = mirror://sourceforge/bridge/bridge-utils-1.2.tar.gz;
    sha256 = "0jg3z51c2c34byg4zi39j9g4b66js5kanjhid77hpa0jdfmryfy9";
  };

  buildInputs = [ autoconf automake ];

  preConfigure = "autoreconf";

  meta = { 
    description = "http://sourceforge.net/projects/bridge/";
    homepage = [ "http://www.linux-foundation.org/en/Net:Bridge/" "http://sourceforge.net/projects/bridge/" ];
    license = "GPL";
  };
}