Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #46351 from dtzWill/update/kconfig-4.11

kconfig-frontends: update and fixups

authored by

Will Dietz and committed by
GitHub
2fc255cd 8e991ac4

+8 -6
+8 -6
pkgs/development/tools/misc/kconfig-frontends/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, bison, flex, gperf, ncurses }: 1 + { stdenv, fetchurl, pkgconfig, bison, flex, gperf, ncurses, pythonPackages }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 basename = "kconfig-frontends"; 5 - version = "3.12.0.0"; 5 + version = "4.11.0.1"; 6 6 name = "${basename}-${version}"; 7 7 8 8 src = fetchurl { 9 - sha256 = "01zlph9bq2xzznlpmfpn0zrmhf2iqw02yh1q7g7adgkl5jk1a9pa"; 9 + sha256 = "1xircdw3k7aaz29snf96q2fby1cs48bidz5l1kkj0a5gbivw31i3"; 10 10 url = "http://ymorin.is-a-geek.org/download/${basename}/${name}.tar.xz"; 11 11 }; 12 12 13 13 nativeBuildInputs = [ pkgconfig ]; 14 - buildInputs = [ bison flex gperf ncurses ]; 15 - 16 - hardeningDisable = [ "format" ]; 14 + buildInputs = [ bison flex gperf ncurses pythonPackages.python pythonPackages.wrapPython ]; 17 15 18 16 configureFlags = [ 19 17 "--enable-frontends=conf,mconf,nconf" 20 18 ]; 19 + 20 + postInstall = '' 21 + wrapPythonPrograms 22 + ''; 21 23 22 24 meta = with stdenv.lib; { 23 25 description = "Out of Linux tree packaging of the kconfig infrastructure";