about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/icecream/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/icecream/default.nix')
-rw-r--r--nixpkgs/pkgs/servers/icecream/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/servers/icecream/default.nix b/nixpkgs/pkgs/servers/icecream/default.nix
index 1800700b0408..573dcee7170e 100644
--- a/nixpkgs/pkgs/servers/icecream/default.nix
+++ b/nixpkgs/pkgs/servers/icecream/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, autoreconfHook, docbook2x, libarchive, libcap_ng, lzo, zstd, docbook_xml_dtd_45 }:
+{ lib, stdenv, fetchFromGitHub, autoreconfHook, docbook2x, libarchive, libcap_ng, lzo, zstd, docbook_xml_dtd_45 }:
 
 stdenv.mkDerivation rec {
   pname = "icecream";
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ autoreconfHook docbook2x ];
   buildInputs = [ libarchive libcap_ng lzo zstd docbook_xml_dtd_45 ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Distributed compiler with a central scheduler to share build load";
     inherit (src.meta) homepage;
     license = licenses.gpl2;