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

Commits on Nov 2, 2019

  1. iasl: 20190108 -> 20191018

    fpletz committed Nov 2, 2019
    Copy the full SHA
    84d72c7 View commit details
  2. Copy the full SHA
    21c71e0 View commit details
  3. mstpd: 0.0.7 -> 0.0.8

    fpletz committed Nov 2, 2019
    Copy the full SHA
    55bbd62 View commit details
  4. mstpd: fix build with gcc9

    fpletz committed Nov 2, 2019
    Copy the full SHA
    74554ab View commit details
  5. Copy the full SHA
    f60914a View commit details
  6. Copy the full SHA
    a45f931 View commit details
  7. flatbuffers: 1.10.0 -> 1.11.0

    fpletz committed Nov 2, 2019
    Copy the full SHA
    1263003 View commit details
  8. spirv-tools: 2019.3 -> 2019.4

    fpletz committed Nov 2, 2019
    Copy the full SHA
    5b4cf07 View commit details
  9. leatherman: 1.8.0 -> 1.9.0

    fpletz committed Nov 2, 2019
    Copy the full SHA
    4bf34b8 View commit details
  10. Copy the full SHA
    ee1cffd View commit details
  11. libdynd: fix build with gcc9

    fpletz committed Nov 2, 2019
    Copy the full SHA
    2c3f93f View commit details
4 changes: 2 additions & 2 deletions pkgs/development/compilers/iasl/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "iasl";
version = "20190108";
version = "20191018";

src = fetchurl {
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
sha256 = "0bqhr3ndchvfhxb31147z8gd81dysyz5dwkvmp56832d0js2564q";
sha256 = "0pz95fb1zvsj9238bg7a4vxl1svn5mnjg10sn5qvgr008q0v9782";
};

NIX_CFLAGS_COMPILE = [
12 changes: 10 additions & 2 deletions pkgs/development/libraries/bctoolbox/default.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
{stdenv, fetchFromGitHub, cmake, mbedtls, bcunit, srtp}:
{stdenv, fetchpatch, fetchFromGitHub, cmake, mbedtls, bcunit, srtp}:
stdenv.mkDerivation rec {
name = "${baseName}-${version}";
baseName = "bctoolbox";
version = "0.6.0";
buildInputs = [cmake mbedtls bcunit srtp];
nativeBuildInputs = [cmake];
buildInputs = [mbedtls bcunit srtp];
patches = [
(fetchpatch {
name = "fix-gcc9.patch";
url = "https://github.com/BelledonneCommunications/bctoolbox/commit/2425a224634c7a70ae91f809bbab51771f0a30d7.patch";
sha256 = "0ib859mwwlr6jk6qbwp6x25pp8wgv21lh0qgdsx5hyzwdzqx1b3h";
})
];
src = fetchFromGitHub {
owner = "BelledonneCommunications";
repo = baseName;
4 changes: 2 additions & 2 deletions pkgs/development/libraries/flatbuffers/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "flatbuffers";
version = "1.10.0";
version = "1.11.0";

src = fetchFromGitHub {
owner = "google";
repo = "flatbuffers";
rev = "v${version}";
sha256 = "1b32kc5jp83l43w2gs1dkw2vqm2j0wi7xfxqa86m18n3l41ca734";
sha256 = "1gl8pnykzifh7pnnvl80f5prmj5ga60dp44inpv9az2k9zaqx3qr";
};

preConfigure = stdenv.lib.optional stdenv.buildPlatform.isDarwin ''
13 changes: 9 additions & 4 deletions pkgs/development/libraries/leatherman/default.nix
Original file line number Diff line number Diff line change
@@ -2,24 +2,29 @@

stdenv.mkDerivation rec {
pname = "leatherman";
version = "1.8.0";
version = "1.9.0";

src = fetchFromGitHub {
sha256 = "0iizy20pdkbnsfj6bzrkkj7faizc85lcpkpandvnxfybiq7j60iw";
sha256 = "029n16rsvj2abii6d1d4q01fygkicw8n3ja0iaribk4b4h5mc7vc";
rev = version;
repo = "leatherman";
owner = "puppetlabs";
};

NIX_CFLAGS_COMPILE = [ "-Wno-error=ignored-qualifiers" "-Wno-error=class-memaccess" "-Wno-error=catch-value" ];
NIX_CFLAGS_COMPILE = [
"-Wno-error=ignored-qualifiers"
"-Wno-error=class-memaccess"
"-Wno-error=catch-value"
"-Wno-error=deprecated-copy"
];

nativeBuildInputs = [ cmake ];
buildInputs = [ boost curl ruby ];

enableParallelBuilding = true;

meta = with stdenv.lib; {
homepage = https://github.com/puppetlabs/leatherman/;
homepage = https://github.com/puppetlabs/leatherman/;
description = "A collection of C++ and CMake utility libraries";
license = licenses.asl20;
maintainers = [ maintainers.womfoo ];
3 changes: 2 additions & 1 deletion pkgs/development/libraries/libdynd/default.nix
Original file line number Diff line number Diff line change
@@ -16,13 +16,14 @@ stdenv.mkDerivation {
"-DDYND_BUILD_BENCHMARKS=OFF"
];

# added to fix build with gcc7
# added to fix build with gcc7+
NIX_CFLAGS_COMPILE = [
"-Wno-error=implicit-fallthrough"
"-Wno-error=nonnull"
"-Wno-error=tautological-compare"
"-Wno-error=class-memaccess"
"-Wno-error=parentheses"
"-Wno-error=deprecated-copy"
];

buildInputs = [ cmake ];
6 changes: 3 additions & 3 deletions pkgs/development/tools/spirv-tools/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, cmake, python3, spirv-headers }:
let
# Update spirv-headers rev in lockstep according to DEPs file
version = "2019.3";
version = "2019.4";
in

stdenv.mkDerivation rec {
@@ -12,11 +12,11 @@ stdenv.mkDerivation rec {
owner = "KhronosGroup";
repo = "SPIRV-Tools";
rev = "v${version}";
sha256 = "1wvipjcjsi815ls08s3dz9hwlbb59dbl4syxkskg1k9d5jjph1a8";
sha256 = "17bbvhk4p42x4jlvcr5p9903xiiryw57c8yyfxmqik10s8601an9";
};
enableParallelBuilding = true;

buildInputs = [ cmake python3 ];
nativeBuildInputs = [ cmake python3 ];

cmakeFlags = [ "-DSPIRV-Headers_SOURCE_DIR=${spirv-headers.src}" ];

14 changes: 11 additions & 3 deletions pkgs/os-specific/linux/mstpd/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
{ stdenv, fetchFromGitHub, autoreconfHook }:
{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook }:

stdenv.mkDerivation rec {
pname = "mstpd";
version = "0.0.7";
version = "0.0.8";

src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
sha256 = "01majib6d1rixngf8c8vcrj1akf8nsqpxhdfdxxi2xwg23vx8f1a";
sha256 = "1xkfydxljdnj49p5r3mirk4k146428b6imfc9bkfps9yjn64mkgb";
};

patches = [
(fetchpatch {
name = "fix-strncpy-gcc9.patch";
url = "https://github.com/mstpd/mstpd/commit/d27d7e93485d881d8ff3a7f85309b545edbe1fc6.patch";
sha256 = "19456daih8l3y6m9kphjr7pj7slrqzbj6yacnlgznpxyd8y4d86y";
})
];

nativeBuildInputs = [ autoreconfHook ];

configureFlags = [
3 changes: 2 additions & 1 deletion pkgs/servers/mail/archiveopteryx/default.nix
Original file line number Diff line number Diff line change
@@ -20,10 +20,11 @@ stdenv.mkDerivation rec {
sed -i 's:READMEDIR = $(PREFIX):READMEDIR = '$out'/share/doc/archiveopteryx:' ./Jamsettings
'';

# fix build on gcc7
# fix build on gcc7+
NIX_CFLAGS_COMPILE = [
"-Wno-error=builtin-declaration-mismatch"
"-Wno-error=implicit-fallthrough"
"-Wno-error=deprecated-copy"
];

buildPhase = ''jam "-j$NIX_BUILD_CORES" '';
6 changes: 3 additions & 3 deletions pkgs/tools/misc/xsel/default.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@
stdenv.mkDerivation {
pname = "xsel-unstable";

version = "2018-01-10";
version = "2019-08-21";

src = fetchFromGitHub {
owner = "kfish";
repo = "xsel";
rev = "9bfc13d64b5acb92c6648c696a9d9260fcbecc65";
sha256 = "05ms34by5hxznnpvmvhgp6llvlkz0zw4sq6c4bgwr82lj140lscm";
rev = "ef01f3c72a195dbce682184c842b81b17d7d7ad1";
sha256 = "191qa6022b7nww3bicfxpgp4d9x6c8s3sgixi780383ghkxds08c";
};

nativeBuildInputs = [ autoreconfHook ];