about summary refs log tree commit diff
path: root/pkgs/by-name/pr
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-11-26 20:56:17 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-12-05 23:04:47 -0300
commite9654b3ea39a9d170da0e0739119f6d39a07720c (patch)
tree70fe1e784cb574a18b5fa0f3a7da82c659074d98 /pkgs/by-name/pr
parentac6a29c13bfa7560b13fc07329c6203d1d34cf67 (diff)
downloadnixlib-e9654b3ea39a9d170da0e0739119f6d39a07720c.tar
nixlib-e9654b3ea39a9d170da0e0739119f6d39a07720c.tar.gz
nixlib-e9654b3ea39a9d170da0e0739119f6d39a07720c.tar.bz2
nixlib-e9654b3ea39a9d170da0e0739119f6d39a07720c.tar.lz
nixlib-e9654b3ea39a9d170da0e0739119f6d39a07720c.tar.xz
nixlib-e9654b3ea39a9d170da0e0739119f6d39a07720c.tar.zst
nixlib-e9654b3ea39a9d170da0e0739119f6d39a07720c.zip
prio: get rid of with lib
Diffstat (limited to 'pkgs/by-name/pr')
-rw-r--r--pkgs/by-name/pr/prio/package.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/by-name/pr/prio/package.nix b/pkgs/by-name/pr/prio/package.nix
index f733b189757b..620e4f9382ce 100644
--- a/pkgs/by-name/pr/prio/package.nix
+++ b/pkgs/by-name/pr/prio/package.nix
@@ -27,11 +27,11 @@ stdenvNoCC.mkDerivation (finalAttrs: {
     runHook postInstall
   '';
 
-  meta = with lib; {
+  meta = {
     homepage = "https://github.com/letoram/prio";
     description = "Plan9- Rio like Window Manager for Arcan";
-    license = licenses.bsd3;
-    maintainers = with maintainers; [ AndersonTorres ];
-    platforms = platforms.all;
+    license = with lib.licenses; [ bsd3 ];
+    maintainers = with lib.maintainers; [ AndersonTorres ];
+    platforms = lib.platforms.all;
   };
 })