2010-07-28 13:55:54 +02:00
|
|
|
{ stdenv, fetchurl, autoconf, automake }:
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
stdenv.mkDerivation {
|
2007-11-18 11:37:32 +01:00
|
|
|
name = "bridge-utils-1.2";
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
src = fetchurl {
|
2007-12-31 09:49:41 +01:00
|
|
|
url = mirror://sourceforge/bridge/bridge-utils-1.2.tar.gz;
|
2007-11-18 11:37:32 +01:00
|
|
|
sha256 = "0jg3z51c2c34byg4zi39j9g4b66js5kanjhid77hpa0jdfmryfy9";
|
|
|
|
};
|
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
buildInputs = [ autoconf automake ];
|
2007-11-18 11:37:32 +01:00
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
preConfigure = "autoreconf";
|
2007-11-18 11:37:32 +01:00
|
|
|
|
|
|
|
meta = {
|
2010-07-28 13:55:54 +02:00
|
|
|
description = "http://sourceforge.net/projects/bridge/";
|
|
|
|
homepage = [ "http://www.linux-foundation.org/en/Net:Bridge/" "http://sourceforge.net/projects/bridge/" ];
|
|
|
|
license = "GPL";
|
2007-11-18 11:37:32 +01:00
|
|
|
};
|
|
|
|
}
|