bridge-utils: updated to version 1.5
svn path=/nixpkgs/trunk/; revision=30643
This commit is contained in:
parent
dd4841e833
commit
d7cac3194e
|
@ -1,18 +1,21 @@
|
||||||
{ stdenv, fetchurl, autoconf, automake }:
|
{ stdenv, fetchurl, autoconf, automake }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let
|
||||||
name = "bridge-utils-1.4";
|
name = "bridge-utils-1.5";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
inherit name;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/bridge/${name}.tar.gz";
|
url = "mirror://sourceforge/bridge/${name}.tar.gz";
|
||||||
sha256 = "0csrvpjx1n5fzscdrc0xky3rnaxi90rylqciha5sl0n3pklpasc7";
|
sha256 = "42f9e5fb8f6c52e63a98a43b81bd281c227c529f194913e1c51ec48a393b6688";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ autoconf automake ];
|
buildInputs = [ autoconf automake ];
|
||||||
|
|
||||||
preConfigure = "autoreconf";
|
preConfigure = "autoreconf";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "http://sourceforge.net/projects/bridge/";
|
description = "http://sourceforge.net/projects/bridge/";
|
||||||
homepage = [ "http://www.linux-foundation.org/en/Net:Bridge/" "http://sourceforge.net/projects/bridge/" ];
|
homepage = [ "http://www.linux-foundation.org/en/Net:Bridge/" "http://sourceforge.net/projects/bridge/" ];
|
||||||
license = "GPL";
|
license = "GPL";
|
||||||
|
|
Loading…
Reference in New Issue