summary refs log tree commit diff
path: root/pkgs/tools/misc/chelf/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/chelf/default.nix')
-rw-r--r--pkgs/tools/misc/chelf/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/chelf/default.nix b/pkgs/tools/misc/chelf/default.nix
index 96949dd5da5..25344d8658e 100644
--- a/pkgs/tools/misc/chelf/default.nix
+++ b/pkgs/tools/misc/chelf/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub }:
+{ lib, stdenv, fetchFromGitHub }:
 
 stdenv.mkDerivation rec {
   pname = "chelf";
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
     mv chelf $out/bin/chelf
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "change or display the stack size of an ELF binary";
     homepage = "https://github.com/Gottox/chelf";
     license = licenses.bsd2;