20 lines
527 B
Nix
20 lines
527 B
Nix
|
args:
|
||
|
args.stdenv.mkDerivation {
|
||
|
name = "bridge-utils-1.2";
|
||
|
|
||
|
src = args.fetchurl {
|
||
|
url = http://mirror/sourceforge/bridge/bridge-utils-1.2.tar.gz;
|
||
|
sha256 = "0jg3z51c2c34byg4zi39j9g4b66js5kanjhid77hpa0jdfmryfy9";
|
||
|
};
|
||
|
|
||
|
buildInputs =(with args; [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";
|
||
|
};
|
||
|
}
|