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

Commits on May 23, 2020

  1. Samba: 4.12.2 -> 4.12.3

    sjau authored and adisbladis committed May 23, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    veehaitch Vincent Haupert
    Copy the full SHA
    ec756db View commit details
  2. Merge pull request #88165 from sjau/samba-4.12.3

    Samba: 4.12.2 -> 4.12.3
    adisbladis authored May 23, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    veehaitch Vincent Haupert
    Copy the full SHA
    dcd6887 View commit details
Showing with 7 additions and 2 deletions.
  1. +7 −2 pkgs/servers/samba/4.x.nix
9 changes: 7 additions & 2 deletions pkgs/servers/samba/4.x.nix
Original file line number Diff line number Diff line change
@@ -24,6 +24,7 @@
, libtasn1
, tdb
, cmocka
, nixosTests

, enableLDAP ? false, openldap
, enablePrinting ? false, cups
@@ -42,11 +43,11 @@ with stdenv.lib;

stdenv.mkDerivation rec {
pname = "samba";
version = "4.12.2";
version = "4.12.3";

src = fetchurl {
url = "mirror://samba/pub/samba/stable/${pname}-${version}.tar.gz";
sha256 = "0l514s2xhsy1lspzgvibbzs80zi84zxr2wx4d40hq85yb2lg5434";
sha256 = "09w7aap1cjc41ayhaksm1igc7p7gl40fad4a1l6q4ds9a2jbrb9z";
};

outputs = [ "out" "dev" "man" ];
@@ -148,6 +149,10 @@ stdenv.mkDerivation rec {
find $out -type f -name \*.so -exec $SHELL -c "$SCRIPT" \;
'';

passthru = {
tests.samba = nixosTests.samba;
};

meta = with stdenv.lib; {
homepage = "https://www.samba.org";
description = "The standard Windows interoperability suite of programs for Linux and Unix";