python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / newt / default.nix
blob6114c4c70d0f784ff1d9b22461112fd61a6e759a
1 { lib, fetchurl, stdenv, slang, popt, python }:
3 let
4   pythonIncludePath = "${lib.getDev python}/include/python";
5 in
6 stdenv.mkDerivation rec {
7   pname = "newt";
8   version = "0.52.21";
10   src = fetchurl {
11     url = "https://releases.pagure.org/${pname}/${pname}-${version}.tar.gz";
12     sha256 = "0cdvbancr7y4nrj8257y5n45hmhizr8isynagy4fpsnpammv8pi6";
13   };
15   postPatch = ''
16     sed -i -e s,/usr/bin/install,install, -e s,-I/usr/include/slang,, Makefile.in po/Makefile
18     substituteInPlace configure \
19       --replace "/usr/include/python" "${pythonIncludePath}"
20     substituteInPlace configure.ac \
21       --replace "/usr/include/python" "${pythonIncludePath}"
23     substituteInPlace Makefile.in \
24       --replace "ar rv" "${stdenv.cc.targetPrefix}ar rv"
25   '';
27   strictDeps = true;
28   nativeBuildInputs = [ python ];
29   buildInputs = [ slang popt ];
31   NIX_LDFLAGS = "-lncurses";
33   preConfigure = ''
34     # If CPP is set explicitly, configure and make will not agree about which
35     # programs to use at different stages.
36     unset CPP
37   '';
39   makeFlags = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
40     "CROSS_COMPILE=${stdenv.cc.targetPrefix}"
41   ];
43   meta = with lib; {
44     homepage = "https://pagure.io/newt";
45     description = "Library for color text mode, widget based user interfaces";
47     license = licenses.lgpl2;
48     platforms = platforms.linux;
49     maintainers = [ maintainers.viric ];
50   };