mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
626a9f9f16
reported on irc, reproduced locally
23 lines
631 B
Nix
23 lines
631 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pth-2.0.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/pth/${name}.tar.gz";
|
|
sha256 = "0ckjqw5kz5m30srqi87idj7xhpw6bpki43mj07bazjm2qmh3cdbj";
|
|
};
|
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isAarch32 ''
|
|
configureFlagsArray=("CFLAGS=-DJB_SP=8 -DJB_PC=9")
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The GNU Portable Threads library";
|
|
homepage = https://www.gnu.org/software/pth;
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.all;
|
|
broken = stdenv.hostPlatform != stdenv.buildPlatform && stdenv.hostPlatform.isAarch64;
|
|
};
|
|
}
|