summary refs log tree commit diff
path: root/pkgs/tools/misc/ovh-ttyrec/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/ovh-ttyrec/default.nix')
-rw-r--r--pkgs/tools/misc/ovh-ttyrec/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/ovh-ttyrec/default.nix b/pkgs/tools/misc/ovh-ttyrec/default.nix
index 5601509726a..fc2c2c3d67a 100644
--- a/pkgs/tools/misc/ovh-ttyrec/default.nix
+++ b/pkgs/tools/misc/ovh-ttyrec/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, zstd }:
+{ lib, stdenv, fetchFromGitHub, zstd }:
 
 stdenv.mkDerivation rec {
   pname = "ovh-ttyrec";
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
     cp docs/*.1 $out/man
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     homepage = "https://github.com/ovh/ovh-ttyrec/";
     description = "Terminal interaction recorder and player";
     license = licenses.bsd3;