lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #298185 from alyssais/npth-musl

pkgsMusl.npth: backport patch to fix build

authored by

Weijia Wang and committed by
GitHub
e2fe50e4 97f05fe3

+11 -1
+11 -1
pkgs/development/libraries/npth/default.nix
··· 1 - { lib, stdenv, fetchurl }: 1 + { lib, stdenv, fetchurl, fetchpatch, autoreconfHook }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "npth"; ··· 8 8 url = "mirror://gnupg/npth/npth-${version}.tar.bz2"; 9 9 sha256 = "sha256-hYn1aTe3XOM7KNMS/MvzArO3HsPzlF/eaqp0AnkUrQU="; 10 10 }; 11 + 12 + patches = [ 13 + (fetchpatch { 14 + name = "musl.patch"; 15 + url = "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git;a=patch;h=417abd56fd7bf45cd4948414050615cb1ad59134"; 16 + hash = "sha256-0g2tLFjW1bybNi6oxlW7vPimsQLjmTih4JZSoATjESI="; 17 + }) 18 + ]; 19 + 20 + nativeBuildInputs = [ autoreconfHook ]; 11 21 12 22 doCheck = true; 13 23