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:
Patrick Steinhardt
2024-12-30 09:23:14 +01:00
parent 9bb668a703
commit 3de67e06c9
+6 -1
View File
@@ -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";