mininet: 2.3.0d6 -> 2.3.0

main
Matthieu Coudron 3 years ago committed by Matthieu Coudron
parent 71e04f8372
commit fb79f910b7
  1. 16
      pkgs/tools/virtualization/mininet/default.nix
  2. 4
      pkgs/top-level/all-packages.nix
  3. 2
      pkgs/top-level/python-packages.nix

@ -1,15 +1,15 @@
{ stdenv, lib, fetchFromGitHub
, which
, python
, python3
, help2man
}:
let
pyEnv = python.withPackages(ps: [ ps.setuptools ]);
pyEnv = python3.withPackages(ps: [ ps.setuptools ]);
in
stdenv.mkDerivation rec {
pname = "mininet";
version = "2.3.0d6";
version = "2.3.0";
outputs = [ "out" "py" ];
@ -17,14 +17,16 @@ stdenv.mkDerivation rec {
owner = "mininet";
repo = "mininet";
rev = version;
sha256 = "0wc6gni9dxj9jjnw66a28jdvcfm8bxv1i776m5dh002bn5wjcl6x";
sha256 = "sha256-bCppmeB+zQMKTptnzhsXtl72XJXU3USo7cQgP1Z6SrY=";
};
buildFlags = [ "mnexec" ];
makeFlags = [ "PREFIX=$(out)" ];
pythonPath = [ python.pkgs.setuptools ];
buildInputs = [ python which help2man ];
pythonPath = [ python3.pkgs.setuptools ];
nativeBuildInputs = [ help2man ];
propagatedBuildInputs = [ python3 which ];
installTargets = [ "install-mnexec" "install-manpages" ];
@ -40,7 +42,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Emulator for rapid prototyping of Software Defined Networks";
license = {
fullName = "Mininet 2.3.0d6 License";
fullName = "Mininet 2.3.0 License";
};
platforms = platforms.linux;
homepage = "https://github.com/mininet/mininet";

@ -31354,9 +31354,7 @@ with pkgs;
scotch = callPackage ../applications/science/math/scotch { };
mininet = callPackage ../tools/virtualization/mininet {
python = python3;
};
mininet = callPackage ../tools/virtualization/mininet { };
msieve = callPackage ../applications/science/math/msieve { };

@ -4656,7 +4656,7 @@ in {
minimock = callPackage ../development/python-modules/minimock { };
mininet-python = (toPythonModule (pkgs.mininet.override {
inherit python;
python3 = python;
})).py;
minio = callPackage ../development/python-modules/minio { };

Loading…
Cancel
Save