Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c29d2fde74d0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 04a2885dbf91
Choose a head ref
  • 4 commits
  • 5 files changed
  • 1 contributor

Commits on May 22, 2018

  1. Copy the full SHA
    72f293a View commit details
  2. Copy the full SHA
    852fa6b View commit details
  3. Copy the full SHA
    a32b6d5 View commit details
  4. hostapd: install man pages

    globin committed May 22, 2018
    Copy the full SHA
    04a2885 View commit details
8 changes: 8 additions & 0 deletions nixos/modules/services/misc/home-assistant.nix
Original file line number Diff line number Diff line change
@@ -128,9 +128,17 @@ in {
you might need to specify it in <literal>extraPackages</literal>.
'';
};

openFirewall = mkOption {
default = false;
type = types.bool;
description = "Whether to open the firewall for the specified port.";
};
};

config = mkIf cfg.enable {
networking.firewall.allowedTCPPorts = mkIf cfg.openFirewall [ cfg.port ];

systemd.services.home-assistant = {
description = "Home Assistant";
after = [ "network.target" ];
2 changes: 1 addition & 1 deletion nixos/modules/tasks/network-interfaces-scripted.nix
Original file line number Diff line number Diff line change
@@ -209,7 +209,7 @@ let
''
echo "${cidr}" >> $state
echo -n "adding route ${cidr}... "
if out=$(ip route add "${cidr}" ${options} ${via} dev "${i.name}" 2>&1); then
if out=$(ip route add "${cidr}" ${options} ${via} dev "${i.name}" proto static 2>&1); then
echo "done"
elif ! echo "$out" | grep "File exists" >/dev/null 2>&1; then
echo "'ip route add "${cidr}" ${options} ${via} dev "${i.name}"' failed: $out"
30 changes: 30 additions & 0 deletions pkgs/development/python-modules/pyairvisual/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{ lib, buildPythonPackage, isPy3k, fetchFromGitHub, requests
, requests-mock, pytest
}:

buildPythonPackage rec {
pname = "pyairvisual";
version = "1.0.0";

src = fetchFromGitHub {
owner = "bachya";
repo = pname;
rev = "v${version}";
sha256 = "0ng6k07n91k5l68zk3hl4fywb33admp84wqdm20qmmw9yc9c64fd";
};

checkInputs = [ pytest requests-mock ];
propagatedBuildInputs = [ requests ];

checkPhase = ''
py.test tests
'';

disabled = !isPy3k;

meta = with lib; {
description = "A thin Python wrapper for the AirVisual API";
license = licenses.mit;
homepage = https://github.com/bachya/pyairvisual;
};
}
6 changes: 6 additions & 0 deletions pkgs/os-specific/linux/hostapd/default.nix
Original file line number Diff line number Diff line change
@@ -62,6 +62,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libnl openssl sqlite ];

outputs = [ "out" "man" ];

extraConfig = ''
CONFIG_DRIVER_WIRED=y
CONFIG_LIBNL32=y
@@ -103,6 +105,10 @@ stdenv.mkDerivation rec {
'';

preInstall = "mkdir -p $out/bin";
postInstall = ''
install -vD hostapd.8 -t $man/share/man/man8
install -vD hostapd_cli.1 -t $man/share/man/man1
'';

meta = {
homepage = http://hostap.epitest.fi;
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -319,6 +319,8 @@ in {

pyaes = callPackage ../development/python-modules/pyaes { };

pyairvisual = callPackage ../development/python-modules/pyairvisual { };

pyamf = callPackage ../development/python-modules/pyamf { };

pyarrow = callPackage ../development/python-modules/pyarrow {