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: 1532d5632f13
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 90f9d52b7386
Choose a head ref
  • 6 commits
  • 7 files changed
  • 2 contributors

Commits on Jul 10, 2017

  1. nettools: 1.60_p20120127084908 -> 1.60_p20161110235919

    Some tools now need to be explcitely enabled. This version ships the same
    executables as the previous one.
    fpletz committed Jul 10, 2017
    Copy the full SHA
    9a219a7 View commit details
  2. libwebp: 0.4.3 -> 0.6.0

    fpletz committed Jul 10, 2017
    Copy the full SHA
    8c73028 View commit details
  3. ndppd: init at 0.2.5

    fadenb authored and fpletz committed Jul 10, 2017
    Copy the full SHA
    7b44b7a View commit details
  4. Copy the full SHA
    33acb13 View commit details
  5. pinentry: 0.9.7 -> 1.0.0

    fpletz committed Jul 10, 2017
    Copy the full SHA
    c3b566b View commit details
  6. 3
    Copy the full SHA
    90f9d52 View commit details
30 changes: 30 additions & 0 deletions pkgs/applications/networking/ndppd/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub, gzip, ... }:

stdenv.mkDerivation rec {
name = "ndppd-${version}";
version = "0.2.5";

src = fetchFromGitHub {
owner = "DanielAdolfsson";
repo = "ndppd";
rev = "${version}";
sha256 = "0niri5q9qyyyw5lmjpxk19pv3v4srjvmvyd5k6ks99mvqczjx9c0";
};

makeFlags = [
"PREFIX=$(out)"
];

preConfigure = ''
substituteInPlace Makefile --replace /bin/gzip ${gzip}/bin/gzip
'';

meta = {
description = "A daemon that proxies NDP (Neighbor Discovery Protocol) messages between interfaces";
homepage = "https://github.com/DanielAdolfsson/ndppd";
license = stdenv.lib.licenses.gpl3;

platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.fadenb ];
};
}
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libwebp/default.nix
Original file line number Diff line number Diff line change
@@ -27,11 +27,11 @@ in
with stdenv.lib;
stdenv.mkDerivation rec {
name = "libwebp-${version}";
version = "0.4.3";
version = "0.6.0";

src = fetchurl {
url = "http://downloads.webmproject.org/releases/webp/${name}.tar.gz";
sha256 = "1i4hfczjm3b1qj1g4cc9hgb69l47f3nkgf6hk7nz4dm9zmc0vgpg";
sha256 = "0h1brwkyxc7lb8lc53aacdks5vc1y9hzngqi41gg7y6l56912a69";
};

configureFlags = [
14 changes: 11 additions & 3 deletions pkgs/os-specific/linux/net-tools/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,27 @@
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
name = "net-tools-1.60_p20120127084908";
name = "net-tools-1.60_p20161110235919";

src = fetchurl {
url = "mirror://gentoo/distfiles/${name}.tar.xz";
sha256 = "408a51964aa142a4f45c4cffede2478abbd5630a7c7346ba0d3611059a2a3c94";
sha256 = "1kbgwkys45kb5wqhchi1kf0sfw93c1cl0hgyw7yhacxzdfxjmdfr";
};

preBuild =
''
cp ${./config.h} config.h
'';

makeFlags = "BASEDIR=$(out) mandir=/share/man";
makeFlags = [
"BASEDIR=$(out)"
"mandir=/share/man"
"HAVE_ARP_TOOLS=1"
"HAVE_PLIP_TOOLS=1"
"HAVE_SERIAL_TOOLS=1"
"HAVE_HOSTNAME_TOOLS=1"
"HAVE_HOSTNAME_SYMLINKS=1"
];

meta = {
homepage = http://net-tools.sourceforge.net/;
4 changes: 2 additions & 2 deletions pkgs/servers/matrix-synapse/default.nix
Original file line number Diff line number Diff line change
@@ -24,13 +24,13 @@ let
};
in pythonPackages.buildPythonApplication rec {
name = "matrix-synapse-${version}";
version = "0.21.0";
version = "0.22.1";

src = fetchFromGitHub {
owner = "matrix-org";
repo = "synapse";
rev = "v${version}";
sha256 = "0mxgpfyh7265kh379hsb53lni43xcq9nffanbxwrg8hp8c79pcg3";
sha256 = "06kqqsfqmziff7i99yyxqvkqjm7fwi56abc2vy25g9kqzpdvkay7";
};

patches = [ ./matrix-synapse.patch ];
8 changes: 6 additions & 2 deletions pkgs/tools/networking/lldpd/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, lib, fetchurl, pkgconfig
{ stdenv, lib, fetchurl, pkgconfig, removeReferencesTo
, libevent, readline, net_snmp }:

stdenv.mkDerivation rec {
@@ -16,13 +16,17 @@ stdenv.mkDerivation rec {
"--with-snmp"
];

nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig removeReferencesTo ];
buildInputs = [ libevent readline net_snmp ];

enableParallelBuilding = true;

outputs = [ "out" "dev" "man" "doc" ];

preFixup = ''
find $out -type f -exec remove-references-to -t ${stdenv.cc} '{}' +
'';

meta = with lib; {
description = "802.1ab implementation (LLDP) to help you locate neighbors of all your equipments";
homepage = "https://vincentbernat.github.io/lldpd/";
4 changes: 2 additions & 2 deletions pkgs/tools/security/pinentry/default.nix
Original file line number Diff line number Diff line change
@@ -10,11 +10,11 @@ let
in
with stdenv.lib;
stdenv.mkDerivation rec {
name = "pinentry-0.9.7";
name = "pinentry-1.0.0";

src = fetchurl {
url = "mirror://gnupg/pinentry/${name}.tar.bz2";
sha256 = "1cp7wjqr6nx31mdclr61s2h84ijqjl0ph99kgj4vyawpjj1j1633";
sha256 = "0ni7g4plq6x78p32al7m8h2zsakvg1rhfz0qbc3kdc7yq7nw4whn";
};

buildInputs = [ libgpgerror libassuan libcap gtk2 ncurses qt4 ];
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -3259,6 +3259,8 @@ with pkgs;

ndjbdns = callPackage ../tools/networking/ndjbdns { };

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

neofetch = callPackage ../tools/misc/neofetch { };

nerdfonts = callPackage ../data/fonts/nerdfonts { };