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: 4641f957913f
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: 94a08f2f8e97
Choose a head ref
  • 6 commits
  • 5 files changed
  • 3 contributors

Commits on Feb 8, 2019

  1. Copy the full SHA
    fedc7d0 View commit details

Commits on Oct 26, 2019

  1. sndio: fix build on darwin

    marsam committed Oct 26, 2019
    Copy the full SHA
    5bb2426 View commit details

Commits on Oct 27, 2019

  1. xapian: 1.4.12 -> 1.4.13

    update darwin patch
    risicle committed Oct 27, 2019
    Copy the full SHA
    84ab228 View commit details

Commits on Oct 28, 2019

  1. Merge pull request #72118 from risicle/ris-xapian-1.4.13

    xapian: 1.4.12 -> 1.4.13
    marsam authored Oct 28, 2019
    Copy the full SHA
    17b02ef View commit details
  2. Merge pull request #72033 from marsam/fix-sndio-darwin

    sndio: fix build on darwin
    marsam authored Oct 28, 2019
    Copy the full SHA
    846da8b View commit details
  3. Merge pull request #54975 from ghost/python-logstash

    pythonPackages.python-logstash: init at 0.4.6
    marsam authored Oct 28, 2019
    Copy the full SHA
    94a08f2 View commit details
2 changes: 1 addition & 1 deletion pkgs/development/libraries/xapian/default.nix
Original file line number Diff line number Diff line change
@@ -37,5 +37,5 @@ let
};
};
in {
xapian_1_4 = generic "1.4.12" "0z5c1y9vp519h2x2igjq39v6j615nppry0wasd0xn4hphgd3d2jg";
xapian_1_4 = generic "1.4.13" "0z0k8902bz2ckdggikj5yz11ik2n8krmdwzvpqv60phcm3zzzy4k";
}
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
diff -Naur xapian-core.old/tests/api_db.cc xapian-core.new/tests/api_db.cc
--- xapian-core.old/tests/api_db.cc
+++ xapian-core.new/tests/api_db.cc
@@ -998,6 +998,7 @@
@@ -1020,6 +1020,7 @@

// test for keepalives
DEFINE_TESTCASE(keepalive1, remote) {
+ SKIP_TEST("Fails in darwin nix build environment");
Xapian::Database db(get_remote_database("apitest_simpledata", 5000));
XFAIL_FOR_BACKEND("multi_glass_remoteprog_glass",
"Multi remote databases are currently buggy");

/* Test that keep-alives work */
diff -Naur xapian-core.old/tests/api_scalability.cc xapian-core.new/tests/api_scalability.cc
--- xapian-core.old/tests/api_scalability.cc
+++ xapian-core.new/tests/api_scalability.cc
21 changes: 21 additions & 0 deletions pkgs/development/python-modules/python-logstash/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
pname = "python-logstash";
version = "0.4.6";

src = fetchPypi {
inherit pname version;
sha256 = "13763yx0k655y0c8gxv7jj6cqp45zypx2fmnc56jnn9zz1fkx50h";
};

# no tests
doCheck = false;

meta = with lib; {
description = "Python logging handler for Logstash";
homepage = https://github.com/vklochan/python-logstash;
maintainers = with maintainers; [ peterromfeldhk ];
license = licenses.mit;
};
}
8 changes: 7 additions & 1 deletion pkgs/misc/sndio/default.nix
Original file line number Diff line number Diff line change
@@ -4,13 +4,19 @@ stdenv.mkDerivation rec {
pname = "sndio";
version = "1.6.0";
enableParallelBuilding = true;
buildInputs = [ alsaLib ];
buildInputs = stdenv.lib.optionals stdenv.isLinux [ alsaLib ];

src = fetchurl {
url = "http://www.sndio.org/sndio-${version}.tar.gz";
sha256 = "1havdx3q4mipgddmd2bnygr1yh6y64567m1yqwjapkhsq550dq4r";
};

postFixup = stdenv.lib.optionalString stdenv.isDarwin ''
for file in $out/bin/*; do
install_name_tool -change libsndio.7.0.dylib $out/lib/libsndio.dylib $file
done
'';

meta = with stdenv.lib; {
homepage = "http://www.sndio.org";
description = "Small audio and MIDI framework part of the OpenBSD project";
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -5619,6 +5619,8 @@ in {

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

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

libarchive-c = callPackage ../development/python-modules/libarchive-c {
inherit (pkgs) libarchive;
};