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: 8002a7f1e41b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b50bf3af83c0
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 22, 2019

  1. sssd: 1.16.3 -> 1.16.4

    dtzWill authored and srhb committed Mar 22, 2019
    Copy the full SHA
    b50bf3a 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";