* bridge-utils updated to 1.4.
svn path=/nixpkgs/trunk/; revision=23778
This commit is contained in:
20
pkgs/os-specific/linux/bridge-utils/default.nix
Normal file
20
pkgs/os-specific/linux/bridge-utils/default.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ stdenv, fetchurl, autoconf, automake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bridge-utils-1.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/bridge/${name}.tar.gz";
|
||||
sha256 = "0csrvpjx1n5fzscdrc0xky3rnaxi90rylqciha5sl0n3pklpasc7";
|
||||
};
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user