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: 2b9aa0ac90e6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4a6cde0c6410
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 21, 2019

  1. Copy the full SHA
    9595eb1 View commit details

Commits on Mar 22, 2019

  1. Merge pull request #58076 from dtzWill/update/sssd-1.16.4

    sssd: 1.16.3 -> 1.16.4
    srhb authored Mar 22, 2019
    Copy the full SHA
    4a6cde0 View commit details
Showing with 2 additions and 10 deletions.
  1. +2 −10 pkgs/os-specific/linux/sssd/default.nix
12 changes: 2 additions & 10 deletions pkgs/os-specific/linux/sssd/default.nix
Original file line number Diff line number Diff line change
@@ -12,21 +12,13 @@ let
in
stdenv.mkDerivation rec {
name = "sssd-${version}";
version = "1.16.3";
version = "1.16.4";

src = fetchurl {
url = "https://fedorahosted.org/released/sssd/${name}.tar.gz";
sha256 = "1i2fq37w0k71xwqcq1i4l3nglmwybc4694xbrccrih33qsh1fpgf";
sha256 = "0ngr7cgimyjc6flqkm7psxagp1m4jlzpqkn28pliifbmdg6i5ckb";
};

patches = [
(fetchpatch {
name = "duplicate-case-value.diff";
url = "https://github.com/SSSD/sssd/commit/1ee12b05570fcfb8.diff";
sha256 = "01y8i8cfs2gydn84097cl5fynx0db8b0vr345gh57ypp84in3ixw";
})
];

# Something is looking for <libxml/foo.h> instead of <libxml2/libxml/foo.h>
NIX_CFLAGS_COMPILE = "-I${libxml2.dev}/include/libxml2";