forked from mirrors/nixpkgs
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 {
|
||||
basename = "kconfig-frontends";
|
||||
version = "3.12.0.0";
|
||||
version = "4.11.0.1";
|
||||
name = "${basename}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
sha256 = "01zlph9bq2xzznlpmfpn0zrmhf2iqw02yh1q7g7adgkl5jk1a9pa";
|
||||
sha256 = "1xircdw3k7aaz29snf96q2fby1cs48bidz5l1kkj0a5gbivw31i3";
|
||||
url = "http://ymorin.is-a-geek.org/download/${basename}/${name}.tar.xz";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ bison flex gperf ncurses ];
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
buildInputs = [ bison flex gperf ncurses pythonPackages.python pythonPackages.wrapPython ];
|
||||
|
||||
configureFlags = [
|
||||
"--enable-frontends=conf,mconf,nconf"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
wrapPythonPrograms
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Out of Linux tree packaging of the kconfig infrastructure";
|
||||
longDescription = ''
|
||||
|
|
Loading…
Reference in a new issue