Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7aaffa71dcb0
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fd1c513acaec
Choose a head ref
  • 6 commits
  • 4 files changed
  • 4 contributors

Commits on Apr 28, 2020

  1. connmanui: remove

    no update since 2015.
    The software never left alpha stage
    Mic92 committed Apr 28, 2020
    Copy the full SHA
    d45bece View commit details

Commits on Jun 22, 2020

  1. home-assistant: add override for pyowm

    3.0 is not compatible with home-assistant
    Mic92 committed Jun 22, 2020
    Copy the full SHA
    aac8f45 View commit details
  2. libprom: init at 0.1.1

    Carlos Fernandez Sanz committed Jun 22, 2020
    Copy the full SHA
    ca4ca3c View commit details
  3. Merge pull request #90706 from cfsmp3/libprom

    libprom: init at 0.1.1
    jtojnar authored Jun 22, 2020
    Copy the full SHA
    6ed1d55 View commit details

Commits on Jun 23, 2020

  1. Merge pull request #91273 from Mic92/hass

    home-assistant: add override for pyowm
    Mic92 authored Jun 23, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    erictapen Kerstin
    Copy the full SHA
    15c1ac7 View commit details
  2. Merge pull request #86181 from Mic92/connmanui

    connmanui: remove
    Mic92 authored Jun 23, 2020
    Copy the full SHA
    fd1c513 View commit details
48 changes: 48 additions & 0 deletions pkgs/development/libraries/libprom/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{ gccStdenv
, fetchFromGitHub
, fetchpatch
, cmake
}:
let
stdenv = gccStdenv; # Darwin is clang by default and it doesn't work for this.
in
stdenv.mkDerivation rec {
pname = "libprom";
version = "0.1.1";

src = fetchFromGitHub {
owner = "digitalocean";
repo = "prometheus-client-c";
rev = "v${version}";
sha256 = "0g69s24xwrv5974acshrhnp6i8rpby8c6bhz15m3d8kpgjw3cm8f";
};

nativeBuildInputs = [ cmake ];
doCheck = false;

patches = [
# Required so CMAKE_INSTALL_PREFIX is honored, otherwise it
# installs headers in /usr/include (absolute)
(fetchpatch {
url = "https://github.com/digitalocean/prometheus-client-c/commit/5fcedeb506b7d47dd7bab35797f2c3f23db6fe10.patch";
sha256 = "10hzg8v5jcgxz224kdq0nha9vs78wz098b0ys7gig2iwgrg018fy";
})
(fetchpatch {
url = "https://github.com/digitalocean/prometheus-client-c/commit/0c15e7e45ad0c3726593591fdd7d8f2fde845fe3.patch";
sha256 = "06899v1xz3lpsdxww4p3q7pv8nrymnibncdc472056znr5fidlp0";
})
];

preConfigure = ''
cd prom
'';

meta = {
homepage = "https://github.com/digitalocean/prometheus-client-c/";
description = "A Prometheus Client in C";
platforms = stdenv.lib.platforms.unix;
license = stdenv.lib.licenses.asl20;
maintainers = [ stdenv.lib.maintainers.cfsmp3 ];
};

}
5 changes: 5 additions & 0 deletions pkgs/servers/home-assistant/default.nix
Original file line number Diff line number Diff line change
@@ -27,6 +27,11 @@ let
(mkOverride "astral" "1.10.1"
"d2a67243c4503131c856cafb1b1276de52a86e5b8a1d507b7e08bee51cb67bf1")

# We have 3.x in nixpkgs which is incompatible with home-assistant atm:
# https://github.com/home-assistant/core/blob/dev/requirements_all.txt
(mkOverride "pyowm" "2.10.0"
"1xvcv3sbcn9na8cwz21nnjlixysfk5lymnf65d1nqkbgacc1mm4g")

# required by aioesphomeapi
(self: super: {
protobuf = super.protobuf.override {
34 changes: 0 additions & 34 deletions pkgs/tools/networking/connman/connmanui/default.nix

This file was deleted.

4 changes: 2 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -2589,8 +2589,6 @@ in

connman-notify = callPackage ../tools/networking/connman/connman-notify { };

connmanui = callPackage ../tools/networking/connman/connmanui { };

connman_dmenu = callPackage ../tools/networking/connman/connman_dmenu { };

convertlit = callPackage ../tools/text/convertlit { };
@@ -13427,6 +13425,8 @@ in

libpqxx = callPackage ../development/libraries/libpqxx { };

libprom = callPackage ../development/libraries/libprom { };

libproxy = callPackage ../development/libraries/libproxy {
inherit (darwin.apple_sdk.frameworks) SystemConfiguration CoreFoundation JavaScriptCore;
};