nixpkgs/pkgs/development/tools/misc/kconfig-frontends/default.nix

40 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, bison, flex, gperf, ncurses, pythonPackages }:
2016-04-20 04:12:04 +00:00
stdenv.mkDerivation rec {
basename = "kconfig-frontends";
version = "4.11.0.1";
2016-04-20 04:12:04 +00:00
name = "${basename}-${version}";
src = fetchurl {
sha256 = "1xircdw3k7aaz29snf96q2fby1cs48bidz5l1kkj0a5gbivw31i3";
2016-04-20 04:12:04 +00:00
url = "http://ymorin.is-a-geek.org/download/${basename}/${name}.tar.xz";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ bison flex gperf ncurses pythonPackages.python pythonPackages.wrapPython ];
2016-04-20 04:12:04 +00:00
configureFlags = [
"--enable-frontends=conf,mconf,nconf"
];
postInstall = ''
wrapPythonPrograms
'';
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.cc.isClang "-Wno-error=format-security";
2016-04-20 04:12:04 +00:00
meta = with stdenv.lib; {
description = "Out of Linux tree packaging of the kconfig infrastructure";
longDescription = ''
Configuration language and system for the Linux kernel and other
projects. Features simple syntax and grammar, limited yet adequate option
types, simple organization of options, and direct and reverse
dependencies.
'';
homepage = http://ymorin.is-a-geek.org/projects/kconfig-frontends;
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ mbe ];
};
}