gdb: remove with statements

This commit is contained in:
Philip Taron
2024-08-18 06:31:17 -07:00
parent 623a797295
commit d3d5b2d2f5
+4 -4
View File
@@ -88,7 +88,7 @@ stdenv.mkDerivation rec {
'';
configureScript = "../configure";
configureFlags = with lib; [
configureFlags = [
# Set the program prefix to the current targetPrefix.
# This ensures that the prefix always conforms to
# nixpkgs' expectations instead of relying on the build
@@ -139,7 +139,7 @@ stdenv.mkDerivation rec {
'';
};
meta = with lib; {
meta = {
mainProgram = "gdb";
description = "GNU Project debugger";
@@ -155,7 +155,7 @@ stdenv.mkDerivation rec {
license = lib.licenses.gpl3Plus;
# GDB upstream does not support ARM darwin
platforms = with platforms; linux ++ cygwin ++ freebsd ++ ["x86_64-darwin"];
maintainers = with maintainers; [ pierron globin lsix ];
platforms = with lib.platforms; linux ++ cygwin ++ freebsd ++ ["x86_64-darwin"];
maintainers = with lib.maintainers; [ pierron globin lsix ];
};
}