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: 47aad6e9b547
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: ff8b96d90c51
Choose a head ref
  • 8 commits
  • 5 files changed
  • 4 contributors

Commits on Feb 6, 2019

  1. libgnurl: 7.62.0 -> 7.63.0

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/libgnurl/versions
    r-ryantm committed Feb 6, 2019
    Copy the full SHA
    e422db2 View commit details

Commits on Feb 7, 2019

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    grahamc Graham Christensen
    Copy the full SHA
    1703630 View commit details
  2. diffoscope: 99 -> 110

    grahamc committed Feb 7, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    grahamc Graham Christensen
    Copy the full SHA
    6c3df41 View commit details
  3. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    grahamc Graham Christensen
    Copy the full SHA
    ddd9628 View commit details
  4. Manual: make reproducible

    grahamc committed Feb 7, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    grahamc Graham Christensen
    Copy the full SHA
    11a819c View commit details
  5. Merge pull request #55371 from grahamc/diffoscope

    Diffoscope: update, add guestfs when bloated
    domenkozar authored Feb 7, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0fb87b5 View commit details
  6. Merge pull request #55375 from grahamc/manual

    Manual: make reproducible
    grahamc authored Feb 7, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    06c93d8 View commit details
  7. Merge pull request #55307 from r-ryantm/auto-update/libgnurl

    libgnurl: 7.62.0 -> 7.63.0
    falsifian authored Feb 7, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ff8b96d View commit details
4 changes: 2 additions & 2 deletions nixos/modules/services/misc/weechat.xml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
<link xlink:href="https://weechat.org/">WeeChat</link> is a fast and
extensible IRC client.
</para>
<section>
<section xml:id="module-services-weechat-basic-usage">
<title>Basic Usage</title>

<para>
@@ -35,7 +35,7 @@
in the state directory <literal>/var/lib/weechat</literal>.
</para>
</section>
<section>
<section xml:id="module-services-weechat-reattach">
<title>Re-attaching to WeeChat</title>

<para>
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libgnurl/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@
libidn2, libunistring, nghttp2 }:

stdenv.mkDerivation rec {
version = "7.62.0";
version = "7.63.0";

name = "libgnurl-${version}";

src = fetchurl {
url = "mirror://gnu/gnunet/gnurl-${version}.tar.gz";
sha256 = "15b5fn4na9vzmzp4i0jf7al9v3q0abx51g1sgkrdsvdxhypwji1v";
sha256 = "15y4yjy67n3c57kp0yszklcrz2nickrvjvd6laizs6kdbpixjdfl";
};

nativeBuildInputs = [ libtool groff perl pkgconfig python2 ];
20 changes: 20 additions & 0 deletions pkgs/development/python-modules/guestfs/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchurl, libguestfs, qemu }:

buildPythonPackage rec {
pname = "guestfs";
version = "1.40.1";

src = fetchurl {
url = "http://download.libguestfs.org/python/guestfs-${version}.tar.gz";
sha256 = "06a4b5xf1rkhnzfvck91n0z9mlkrgy90s9na5a8da2g4p776lhkf";
};

propagatedBuildInputs = [ libguestfs qemu ];

meta = with stdenv.lib; {
homepage = "http://libguestfs.org/guestfs-python.3.html";
description = "Use libguestfs from Python";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ grahamc ];
};
}
5 changes: 3 additions & 2 deletions pkgs/tools/misc/diffoscope/default.nix
Original file line number Diff line number Diff line change
@@ -9,12 +9,12 @@
# Note: when upgrading this package, please run the list-missing-tools.sh script as described below!
python3Packages.buildPythonApplication rec {
name = "diffoscope-${version}";
version = "99";
version = "110";

src = fetchgit {
url = "https://anonscm.debian.org/git/reproducible/diffoscope.git";
rev = "refs/tags/${version}";
sha256 = "04a2sqv43g002b7s0crk9gnpdvf90j8j8p01b6shinxh6an8prs2";
sha256 = "0rhjxigwxbqbqk7xv7n4m4rh693rg3cbp4x565jv68iy423mf2fb";
};

patches = [
@@ -43,6 +43,7 @@ python3Packages.buildPythonApplication rec {
] ++ lib.optionals enableBloat [
apktool cbfstool colord fpc ghc ghostscriptX giflib gnupg1 gnumeric imagemagick
llvm jdk mono openssh pdftk poppler_utils tcpdump unoconv
python3Packages.guestfs
];

doCheck = false; # Calls 'mknod' in squashfs tests, which needs root
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -406,6 +406,8 @@ in {

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

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

h5py = callPackage ../development/python-modules/h5py {
hdf5 = pkgs.hdf5;
};