lol

Merge pull request #115327 from Mic92/fix-libgcrypt

libgcrypt: remove upstreamed patch

authored by

Jörg Thalheim and committed by
GitHub
d60c06f4 dcea8212

+1 -12
+1 -12
pkgs/development/libraries/libgcrypt/default.nix
··· 1 - { lib, stdenv, fetchurl, gettext, libgpgerror, enableCapabilities ? false, libcap 2 - , buildPackages, fetchpatch 3 - }: 1 + { lib, stdenv, fetchurl, gettext, libgpgerror, enableCapabilities ? false, libcap, buildPackages }: 4 2 5 3 assert enableCapabilities -> stdenv.isLinux; 6 4 ··· 12 10 url = "mirror://gnupg/libgcrypt/${pname}-${version}.tar.bz2"; 13 11 sha256 = "sha256-ssENCRUTsnHkcXcnRgex/7o9lbGIu/qHl/lIrskFPFo="; 14 12 }; 15 - 16 - patches = [ 17 - # fix build on 32bit musl 18 - (fetchpatch { 19 - name = "fix_building_with_disable-asm_on_x86.patch"; 20 - url = "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgcrypt.git;a=commitdiff_plain;h=af23ab5c5482d625ff52e60606cf044e2b0106c8"; 21 - sha256 = "1m8apm8wra6fk89ggha4d0bba5absihm38zvb2khklqh9q5hj9jw"; 22 - }) 23 - ]; 24 13 25 14 outputs = [ "out" "dev" "info" ]; 26 15 outputBin = "dev";