linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / pth / default.nix
blob240c903a8a7711057774963304c6c250d95d416b
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   name = "pth-2.0.7";
6   src = fetchurl {
7     url = "mirror://gnu/pth/${name}.tar.gz";
8     sha256 = "0ckjqw5kz5m30srqi87idj7xhpw6bpki43mj07bazjm2qmh3cdbj";
9   };
11   preConfigure = lib.optionalString stdenv.isAarch32 ''
12     configureFlagsArray=("CFLAGS=-DJB_SP=8 -DJB_PC=9")
13   '' + lib.optionalString (stdenv.hostPlatform.libc == "glibc") ''
14     configureFlagsArray+=("ac_cv_check_sjlj=ssjlj")
15   '';
17   meta = with lib; {
18     description = "The GNU Portable Threads library";
19     homepage = "https://www.gnu.org/software/pth";
20     license = licenses.lgpl21Plus;
21     platforms = platforms.all;
22   };