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: ad71d9b0d5bb
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: fe6ebf85b760
Choose a head ref
  • 9 commits
  • 6 files changed
  • 8 contributors

Commits on Aug 15, 2018

  1. Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    efac36a View commit details
  2. Copy the full SHA
    b2cf952 View commit details
  3. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    infinisil Silvan Mosberger
    Copy the full SHA
    ff9a38e View commit details
  4. Merge pull request #45051 from typetetris/45049

    ptask: remove usage of nonexistent function is_error
    xeji authored Aug 15, 2018
    Copy the full SHA
    8238101 View commit details
  5. Merge pull request #45050 from sjmackenzie/rink-rs

    carnix overrides: add gmp to rink-rs buildInputs & correct crateBin
    srhb authored Aug 15, 2018
    Copy the full SHA
    cc288ee View commit details
  6. pythonPackages.thumbor: 6.5.1 -> 6.5.2

    6.5.2 allows Pillow==5.2.0 (see https://github.com/thumbor/thumbor/releases/tag/6.5.2).
    
    See https://hydra.nixos.org/build/79403232 for further reference.
    Ma27 committed Aug 15, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    cd21faf View commit details
  7. Merge pull request #45062 from Ma27/fix-python-thumbor

    pythonPackages.thumbor: 6.5.1 -> 6.5.2
    timokau authored Aug 15, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    86dc867 View commit details
  8. gem-config: add curses (#45068)

    alyssais authored and zimbatm committed Aug 15, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3116e6e View commit details
  9. ghc-8.0.2: Fix #44987 (#45014)

    nix-env -f '<nixpkgs>' -qaP -A haskell.packages.ghc802
    
    will run again, but the packages depending on ghc-compact will still not
    build, as they have a constrain on base >= 4.10 and ghc 8.0.2 has base
    4.9.1.0
    typetetris authored and domenkozar committed Aug 15, 2018
    Copy the full SHA
    fe6ebf8 View commit details
3 changes: 2 additions & 1 deletion pkgs/applications/misc/ptask/default.nix
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [ pkgconfig makeWrapper ];

patches = [ ./tw-version.patch ];
patches = [ ./tw-version.patch ./json_c_is_error.patch ];

preFixup = ''
wrapProgram "$out/bin/ptask" \
@@ -25,5 +25,6 @@ stdenv.mkDerivation rec {
description = "GTK-based GUI for taskwarrior";
license = licenses.gpl2;
maintainers = [ maintainers.spacefrogg ];
platforms = platforms.linux;
};
}
13 changes: 13 additions & 0 deletions pkgs/applications/misc/ptask/json_c_is_error.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/src/tw.c b/src/tw.c
index 602f7b3..ca601cd 100644
--- a/src/tw.c
+++ b/src/tw.c
@@ -163,7 +163,7 @@ static struct json_object *task_exec_json(const char *opts)

free(cmd);

- if (o && is_error(o))
+ if (!o)
return NULL;

return o;
6 changes: 5 additions & 1 deletion pkgs/build-support/rust/default-crate-overrides.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ stdenv, pkgconfig, curl, darwin, libiconv, libgit2, libssh2,
openssl, sqlite, zlib, dbus, dbus-glib, gdk_pixbuf, cairo, python3,
libsodium, postgresql, ... }:
libsodium, postgresql, gmp, ... }:

let
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
@@ -58,6 +58,10 @@ in
gdk-pixbuf = attrs: {
buildInputs = [ gdk_pixbuf ];
};
rink = attrs: {
buildInputs = [ gmp ];
crateBin = [ { name = "rink"; path = "src/bin/rink.rs"; } ];
};
cairo-rs = attrs: {
buildInputs = [ cairo ];
};
Original file line number Diff line number Diff line change
@@ -19,6 +19,7 @@ self: super: {
filepath = null;
ghc-boot = null;
ghc-boot-th = null;
ghc-compact = null;
ghc-prim = null;
ghci = null;
haskeline = null;
8 changes: 4 additions & 4 deletions pkgs/development/python-modules/thumbor/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{ buildPythonPackage, stdenv, tornado, pycrypto, pycurl, pytz
{ buildPythonPackage, tornado, pycrypto, pycurl, pytz
, pillow, derpconf, python_magic, pexif, libthumbor, opencv, webcolors
, piexif, futures, statsd, thumborPexif, fetchPypi, isPy3k, lib
}:

buildPythonPackage rec {
pname = "thumbor";
version = "6.5.1";
version = "6.5.2";

disabled = isPy3k; # see https://github.com/thumbor/thumbor/issues/1004

src = fetchPypi {
inherit pname version;
sha256 = "0yalqwpxb6m0dz2qfnyv1pqqd5dd020wl7hc0n0bvsvxg1ib9if0";
sha256 = "1icfnzwzi5lvnh576n7v3r819jaw15ph9ja2w3fwg5z9qs40xvl8";
};

postPatch = ''
@@ -40,7 +40,7 @@ buildPythonPackage rec {
# for further reference.
doCheck = false;

meta = with stdenv.lib; {
meta = with lib; {
description = "A smart imaging service";
homepage = https://github.com/thumbor/thumbor/wiki;
license = licenses.mit;
4 changes: 4 additions & 0 deletions pkgs/development/ruby-modules/gem-config/default.nix
Original file line number Diff line number Diff line change
@@ -80,6 +80,10 @@ in
buildInputs = [ curl ];
};

curses = attrs: {
buildInputs = [ ncurses ];
};

dep-selector-libgecode = attrs: {
USE_SYSTEM_GECODE = true;
postInstall = ''