summary refs log tree commit diff
path: root/pkgs/os-specific/linux/pam
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2021-02-09 04:26:15 +0100
committerNiklas Hambüchen <mail@nh2.me>2021-02-10 23:06:15 +0100
commitda899edeecea014fc4245a6fd2d5ec4d3235bcf7 (patch)
tree175b344c822b3e865d121dafcff957e2aa81a809 /pkgs/os-specific/linux/pam
parent1e6c110bc49a2415374e72cd9ae2f6987d29ee23 (diff)
downloadnixpkgs-da899edeecea014fc4245a6fd2d5ec4d3235bcf7.tar
nixpkgs-da899edeecea014fc4245a6fd2d5ec4d3235bcf7.tar.gz
nixpkgs-da899edeecea014fc4245a6fd2d5ec4d3235bcf7.tar.bz2
nixpkgs-da899edeecea014fc4245a6fd2d5ec4d3235bcf7.tar.lz
nixpkgs-da899edeecea014fc4245a6fd2d5ec4d3235bcf7.tar.xz
nixpkgs-da899edeecea014fc4245a6fd2d5ec4d3235bcf7.tar.zst
nixpkgs-da899edeecea014fc4245a6fd2d5ec4d3235bcf7.zip
pkgsStatic.linux-pam: Remove no longer necessary musl patches.
See https://github.com/NixOS/nixpkgs/pull/109906#issuecomment-775630916.

These Alpine patches:

    libpam-fix-build-with-eglibc-2.16.patch
    fix-compat.patch

were removed in:

    https://git.alpinelinux.org/aports/commit/main/linux-pam?id=9ba93cf3f515b4f0b9b3802b84d42c4e436afe8b
Diffstat (limited to 'pkgs/os-specific/linux/pam')
-rw-r--r--pkgs/os-specific/linux/pam/default.nix13
1 files changed, 1 insertions, 12 deletions
diff --git a/pkgs/os-specific/linux/pam/default.nix b/pkgs/os-specific/linux/pam/default.nix
index 407f43eaf08..a697bb17a43 100644
--- a/pkgs/os-specific/linux/pam/default.nix
+++ b/pkgs/os-specific/linux/pam/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, buildPackages, fetchurl, fetchpatch, flex, cracklib, db4, gettext
+{ lib, stdenv, buildPackages, fetchurl, flex, cracklib, db4, gettext
 , nixosTests
 }:
 
@@ -11,17 +11,6 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-IB1AcwsRNbGzzeoJ8sKKxjTXMYHM0Bcs7d7jZJxXkvw=";
   };
 
-  patches = lib.optionals (stdenv.hostPlatform.libc == "musl") [
-    (fetchpatch {
-      url = "https://git.alpinelinux.org/aports/plain/main/linux-pam/fix-compat.patch?id=05a62bda8ec255d7049a2bd4cf0fdc4b32bdb2cc";
-      sha256 = "1h5yp5h2mqp1fcwiwwklyfpa69a3i03ya32pivs60fd7g5bqa7sf";
-    })
-    (fetchpatch {
-      url = "https://git.alpinelinux.org/aports/plain/main/linux-pam/libpam-fix-build-with-eglibc-2.16.patch?id=05a62bda8ec255d7049a2bd4cf0fdc4b32bdb2cc";
-      sha256 = "1ib6shhvgzinjsc603k2x1lxh9dic6qq449fnk110gc359m23j81";
-    })
-  ];
-
   outputs = [ "out" "doc" "man" /* "modules" */ ];
 
   depsBuildBuild = [ buildPackages.stdenv.cc ];