aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/tools/misc/kconfig-frontends
diff options
context:
space:
mode:
authorBrandon Edens <brandonedens@gmail.com>2016-04-19 21:12:04 -0700
committerBrandon Edens <brandonedens@gmail.com>2016-04-19 21:17:47 -0700
commit1d8e7cd4c967d525976ff20a13a4d195b2f3eebd (patch)
treea61e09a343995840b2d50b270394b100af4a8ce6 /pkgs/development/tools/misc/kconfig-frontends
parentd99eaf005c1f21fb190fb2aa3f8b2f63218829d8 (diff)
kconfig-frontends: init 3.12.0.0
Diffstat (limited to 'pkgs/development/tools/misc/kconfig-frontends')
-rw-r--r--pkgs/development/tools/misc/kconfig-frontends/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/kconfig-frontends/default.nix b/pkgs/development/tools/misc/kconfig-frontends/default.nix
new file mode 100644
index 00000000000..13e02fb9272
--- /dev/null
+++ b/pkgs/development/tools/misc/kconfig-frontends/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchurl, pkgconfig, bison, flex, gperf, ncurses }:
+
+stdenv.mkDerivation rec {
+ basename = "kconfig-frontends";
+ version = "3.12.0.0";
+ name = "${basename}-${version}";
+
+ src = fetchurl {
+ sha256 = "01zlph9bq2xzznlpmfpn0zrmhf2iqw02yh1q7g7adgkl5jk1a9pa";
+ url = "http://ymorin.is-a-geek.org/download/${basename}/${name}.tar.xz";
+ };
+
+ buildInputs = [ bison flex gperf ncurses pkgconfig ];
+
+ configureFlags = [
+ "--enable-frontends=conf,mconf,nconf"
+ ];
+
+ 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 ];
+ };
+}