From 5a42e0f53837d40bac2137abc4f03a3a8fcb0815 Mon Sep 17 00:00:00 2001 From: Robert James Hernandez Date: Wed, 12 Mar 2025 01:28:07 +0000 Subject: [PATCH] ax25-apps: remove unnecessary rec and with --- pkgs/by-name/ax/ax25-apps/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/ax/ax25-apps/package.nix b/pkgs/by-name/ax/ax25-apps/package.nix index 8a8e281b905d..457104485fd4 100644 --- a/pkgs/by-name/ax/ax25-apps/package.nix +++ b/pkgs/by-name/ax/ax25-apps/package.nix @@ -7,7 +7,7 @@ ncurses, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "ax25-apps"; version = "0.0.8-rc5-unstable-2021-05-13"; @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { "--program-transform-name=s@^call$@ax&@;s@^listen$@ax&@" ]; - meta = with lib; { + meta = { description = "AX.25 ham radio applications"; homepage = "https://linux-ax25.in-berlin.de/wiki/Main_Page"; - license = licenses.lgpl21Only; - maintainers = with maintainers; [ sarcasticadmin ]; - platforms = platforms.linux; + license = lib.licenses.lgpl21Only; + maintainers = with lib.maintainers; [ sarcasticadmin ]; + platforms = lib.platforms.linux; }; }