about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAnthony Roussel <anthony@roussel.dev>2024-03-29 23:51:19 +0100
committerAnthony Roussel <anthony@roussel.dev>2024-06-13 10:35:46 +0200
commitb5bbd44a8cb6efe63aee2df963a172ca493a84ad (patch)
treea91a5bd822240308b207650e61131635ae649249
parente6cb8bef457f52e2bcc124fa0c23b7be13586ed4 (diff)
downloadnixlib-b5bbd44a8cb6efe63aee2df963a172ca493a84ad.tar
nixlib-b5bbd44a8cb6efe63aee2df963a172ca493a84ad.tar.gz
nixlib-b5bbd44a8cb6efe63aee2df963a172ca493a84ad.tar.bz2
nixlib-b5bbd44a8cb6efe63aee2df963a172ca493a84ad.tar.lz
nixlib-b5bbd44a8cb6efe63aee2df963a172ca493a84ad.tar.xz
nixlib-b5bbd44a8cb6efe63aee2df963a172ca493a84ad.tar.zst
nixlib-b5bbd44a8cb6efe63aee2df963a172ca493a84ad.zip
httping: remove `with lib;`
-rw-r--r--pkgs/tools/networking/httping/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/httping/default.nix b/pkgs/tools/networking/httping/default.nix
index 4a9647bf4c16..1d781a7cd653 100644
--- a/pkgs/tools/networking/httping/default.nix
+++ b/pkgs/tools/networking/httping/default.nix
@@ -53,11 +53,11 @@ stdenv.mkDerivation (finalAttrs: {
     updateScript = nix-update-script { };
   };
 
-  meta = with lib; {
+  meta = {
     changelog = "https://github.com/folkertvanheusden/HTTPing/releases/tag/v${finalAttrs.version}";
     description = "Ping with HTTP requests";
     homepage = "https://vanheusden.com/httping";
-    license = licenses.agpl3Only;
+    license = lib.licenses.agpl3Only;
     longDescription = ''
       Give httping an url, and it'll show you how long it takes to connect,
       send a request and retrieve the reply (only the headers). Be aware that
@@ -66,6 +66,6 @@ stdenv.mkDerivation (finalAttrs: {
     '';
     mainProgram = "httping";
     maintainers = [ ];
-    platforms = platforms.linux;
+    platforms = lib.platforms.linux;
   };
 })