summary refs log blame commit diff
path: root/pkgs/os-specific/linux/bridge-utils/default.nix
blob: b3285ce3343a4a530647049807798592683e5e9f (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                         

                            
 
                  

                                                                    

    
                                      
 
                              

           


                                                                                                              

    
{ 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";
  };
}