From 9976583c97004966dd8d966f0e24b61dd189327a Mon Sep 17 00:00:00 2001 From: LluĂ­s Batlle i Rossell Date: Fri, 11 Dec 2009 14:47:16 +0000 Subject: As agreed with ludo, I remove the getConfig around the cscope expression, which deals only with a build time dependency. Let's better have hydra build cscope (I set me as a maintainer), and prefer simpler expressions to options on build-time dependencies. svn path=/nixpkgs/trunk/; revision=18902 --- pkgs/development/tools/misc/cscope/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'pkgs/development/tools') diff --git a/pkgs/development/tools/misc/cscope/default.nix b/pkgs/development/tools/misc/cscope/default.nix index 305087d59c870..1c6d1dacc7fd6 100644 --- a/pkgs/development/tools/misc/cscope/default.nix +++ b/pkgs/development/tools/misc/cscope/default.nix @@ -1,8 +1,4 @@ -{ fetchurl, stdenv, ncurses, pkgconfig -, installEmacsMode ? false, emacs ? null -}: - -assert installEmacsMode -> emacs != null; +{ fetchurl, stdenv, ncurses, pkgconfig, emacs}: stdenv.mkDerivation rec { name = "cscope-15.7a"; @@ -21,9 +17,9 @@ stdenv.mkDerivation rec { configureFlags = "--with-ncurses=${ncurses}"; - buildInputs = [ ncurses pkgconfig ] ++ stdenv.lib.optional installEmacsMode emacs; + buildInputs = [ ncurses pkgconfig emacs ]; - postInstall = if installEmacsMode then '' + postInstall = '' # Install Emacs mode. cd "contrib/xcscope" @@ -33,7 +29,7 @@ stdenv.mkDerivation rec { ensureDir "$out/share/emacs/site-lisp" emacs --batch --eval '(byte-compile-file "xcscope.el")' cp xcscope.el{,c} "$out/share/emacs/site-lisp" - '' else ""; + ''; meta = { description = "Cscope, a developer's tool for browsing source code"; @@ -49,5 +45,9 @@ stdenv.mkDerivation rec { license = "BSD-style"; homepage = http://cscope.sourceforge.net/; + + maintainers = with stdenv.lib.maintainers; [viric]; + + platforms = with stdenv.lib.platforms; linux; }; } -- cgit 1.4.1