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: cecfd0652cde
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: eb8a9f68cfb1
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Jun 1, 2019

  1. maintainers: add kmein

    Kierán Meinhardt authored and Lassulus committed Jun 1, 2019
    Copy the full SHA
    f1b3f22 View commit details
  2. libcoap: init at 4.2.0

    Kierán Meinhardt authored and Lassulus committed Jun 1, 2019
    Copy the full SHA
    eb8a9f6 View commit details
Showing with 39 additions and 0 deletions.
  1. +6 −0 maintainers/maintainer-list.nix
  2. +31 −0 pkgs/applications/networking/libcoap/default.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -2651,6 +2651,12 @@
github = "Kmeakin";
};

kmein = {
email = "kieran.meinhardt@gmail.com";
name = "Kierán Meinhardt";
github = "kmein";
};

knedlsepp = {
email = "josef.kemetmueller@gmail.com";
github = "knedlsepp";
31 changes: 31 additions & 0 deletions pkgs/applications/networking/libcoap/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ fetchFromGitHub, automake, autoconf, which, pkgconfig, libtool, stdenv }:
stdenv.mkDerivation rec {
pname = "libcoap";
version = "4.2.0";
src = fetchFromGitHub {
repo = "libcoap";
owner = "obgm";
rev = "v${version}";
fetchSubmodules = true;
sha256 = "0mmvkq72i4rda6b7g93qrwg2nwh2rvkq4xw70yppj51hsdrnpfl7";
};
nativeBuildInputs = [
automake
autoconf
which
libtool
pkgconfig
];
preConfigure = "./autogen.sh";
configureFlags = [
"--disable-documentation"
"--disable-shared"
];
meta = with stdenv.lib; {
homepage = "https://github.com/obgm/libcoap";
description = "A CoAP (RFC 7252) implementation in C";
platforms = platforms.linux;
license = licenses.bsd2;
maintainers = [ maintainers.kmein ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -4021,6 +4021,8 @@ in

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

libcoap = callPackage ../applications/networking/libcoap {};

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

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