adding wvdial, wvstreams, usb_modeswitch

svn path=/nixpkgs/trunk/; revision=21131
This commit is contained in:
Marc Weber
2010-04-16 15:56:28 +00:00
parent 3874ba79bd
commit 6ce15d655f
4 changed files with 93 additions and 0 deletions
@@ -0,0 +1,23 @@
args: with args;
stdenv.mkDerivation {
name = "wvstreams-4.6.1";
src = fetchurl {
url = http://wvstreams.googlecode.com/files/wvstreams-4.6.1.tar.gz;
sha256 = "0cvnq3mvh886gmxh0km858aqhx30hpyrfpg1dh6ara9sz3xza0w4";
};
preConfigure = ''
find -type f | xargs sed -i 's@/bin/bash@bash@g'
'';
buildInputs = [qt4 dbus zlib openssl readline perl];
meta = {
description = "network programming library in C++";
homepage = http://alumnit.ca/wiki/index.php?page=WvStreams;
license = "LGPL";
maintainers = [stdenv.lib.maintainers.marcweber];
platforms = stdenv.lib.platforms.linux;
};
}