Merge pull request #46351 from dtzWill/update/kconfig-4.11
kconfig-frontends: update and fixups
This commit is contained in:
commit
2fc255cdb0
@ -1,24 +1,26 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, bison, flex, gperf, ncurses }:
|
{ stdenv, fetchurl, pkgconfig, bison, flex, gperf, ncurses, pythonPackages }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
basename = "kconfig-frontends";
|
basename = "kconfig-frontends";
|
||||||
version = "3.12.0.0";
|
version = "4.11.0.1";
|
||||||
name = "${basename}-${version}";
|
name = "${basename}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
sha256 = "01zlph9bq2xzznlpmfpn0zrmhf2iqw02yh1q7g7adgkl5jk1a9pa";
|
sha256 = "1xircdw3k7aaz29snf96q2fby1cs48bidz5l1kkj0a5gbivw31i3";
|
||||||
url = "http://ymorin.is-a-geek.org/download/${basename}/${name}.tar.xz";
|
url = "http://ymorin.is-a-geek.org/download/${basename}/${name}.tar.xz";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ bison flex gperf ncurses ];
|
buildInputs = [ bison flex gperf ncurses pythonPackages.python pythonPackages.wrapPython ];
|
||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--enable-frontends=conf,mconf,nconf"
|
"--enable-frontends=conf,mconf,nconf"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapPythonPrograms
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Out of Linux tree packaging of the kconfig infrastructure";
|
description = "Out of Linux tree packaging of the kconfig infrastructure";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user