about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/system/safe-rm/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/system/safe-rm/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/system/safe-rm/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/tools/system/safe-rm/default.nix b/nixpkgs/pkgs/tools/system/safe-rm/default.nix
index c188f066d180..c76a48ff8d59 100644
--- a/nixpkgs/pkgs/tools/system/safe-rm/default.nix
+++ b/nixpkgs/pkgs/tools/system/safe-rm/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, perl, coreutils }:
+{ lib, stdenv, fetchgit, perl, coreutils }:
 
 stdenv.mkDerivation rec {
   pname = "safe-rm";
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
     pod2man safe-rm > $out/share/man/man1/safe-rm.1
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Tool intended to prevent the accidental deletion of important files";
     homepage = "https://launchpad.net/safe-rm";
     license = licenses.gpl3;