cgdb: enable strictDeps
Split up inputs into build and native build inputs and enable strict dependencies. While at it, sort inputs alphabetically.
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
lib,
|
||||
stdenv,
|
||||
fetchurl,
|
||||
flex,
|
||||
ncurses,
|
||||
readline,
|
||||
flex,
|
||||
texinfo,
|
||||
}:
|
||||
|
||||
@@ -20,10 +20,15 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [
|
||||
ncurses
|
||||
readline
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
flex
|
||||
texinfo
|
||||
];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Curses interface to gdb";
|
||||
mainProgram = "cgdb";
|
||||
|
||||
Reference in New Issue
Block a user