From 99fa5c68cab8434d6eabe500d588f00898587ddb Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Sat, 29 Apr 2023 08:57:40 -0300 Subject: [PATCH] txr: cosmetic patch - Rewrite input set - Remove nested `with lib` --- pkgs/tools/text/txr/default.nix | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/pkgs/tools/text/txr/default.nix b/pkgs/tools/text/txr/default.nix index 6634ba136dd..a920e0b1f8a 100644 --- a/pkgs/tools/text/txr/default.nix +++ b/pkgs/tools/text/txr/default.nix @@ -1,8 +1,8 @@ -{ lib, - stdenv, - fetchurl, - coreutils, - libffi, +{ lib +, stdenv +, fetchurl +, coreutils +, libffi }: stdenv.mkDerivation (finalAttrs: { @@ -39,7 +39,6 @@ stdenv.mkDerivation (finalAttrs: { rm ${disabledTests} ''; - # TODO: ship vim plugin separately? postInstall = '' mkdir -p $out/share/vim-plugins/txr/{syntax,ftdetect} @@ -53,7 +52,7 @@ stdenv.mkDerivation (finalAttrs: { ln -s $out/share/vim-plugins/txr $out/share/nvim/site ''; - meta = with lib; { + meta = { homepage = "https://nongnu.org/txr"; description = "An Original, New Programming Language for Convenient Data Munging"; longDescription = '' @@ -67,8 +66,8 @@ stdenv.mkDerivation (finalAttrs: { application development in a wide range of areas. ''; changelog = "https://www.kylheku.com/cgit/txr/tree/RELNOTES?h=txr-${finalAttrs.version}"; - license = licenses.bsd2; + license = lib.licenses.bsd2; maintainers = with lib.maintainers; [ AndersonTorres dtzWill ]; - platforms = platforms.all; + platforms = lib.platforms.all; }; })