Merge branch 'master' of github.com:NixOS/nixpkgs

This commit is contained in:
Russell O'Connor 2013-07-25 06:50:31 -04:00
commit 0990730038
3 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, fetchurl, pkgconfig, ncurses, confuse, libnl }:
stdenv.mkDerivation {
name = "bmon-3.1";
src = fetchurl {
url = http://www.carisma.slowglass.com/~tgr/bmon/files/bmon-3.1.tar.gz;
sha256 = "005ib7c3g3cva0rdwsgl6hfakxd5yp88sf4bjxb6iarcm3ax18ky";
};
buildInputs = [ pkgconfig ncurses confuse libnl ];
meta = with stdenv.lib; {
description = "Network bandwidth monitor";
homepage = http://www.carisma.slowglass.com/~tgr/bmon/;
# Neither the homepage nor the source archive has license info, but in the
# latest git version there is a LICENSE file that is the 2-clause BSD
# license.
# - https://github.com/tgraf/bmon/blob/master/LICENSE
# - http://opensource.org/licenses/BSD-2-Clause
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}

View File

@ -503,6 +503,8 @@ let
bfr = callPackage ../tools/misc/bfr { };
bmon = callPackage ../tools/misc/bmon { };
boomerang = callPackage ../development/tools/boomerang { };
bootchart = callPackage ../tools/system/bootchart { };

View File

@ -3473,6 +3473,17 @@ pythonPackages = python.modules // rec {
};
};
plumbum = buildPythonPackage rec {
name = "plumbum-1.2.0";
buildInputs = [ pythonPackages.six ];
src = fetchurl {
url = "https://pypi.python.org/packages/source/p/plumbum/plumbum-1.2.0.tar.gz";
md5 = "18b7f888dfaf62a48df937abffe07897";
};
};
polib = buildPythonPackage rec {
name = "polib-${version}";