docker: remove 'with lib;'

This commit is contained in:
Felix Buehler 2024-08-13 22:07:19 +02:00 committed by Valentin Gagarin
parent a139f83d6f
commit b0290d872d

View File

@ -1,7 +1,4 @@
{ stdenv, lib, fetchFromGitHub, makeWrapper, docker, coreutils, procps, gnused, findutils, gnugrep }:
with lib;
stdenv.mkDerivation rec {
pname = "docker-gc";
version = "unstable-2015-10-5";
@ -23,7 +20,7 @@ stdenv.mkDerivation rec {
--prefix PATH : "${lib.makeBinPath [ docker coreutils procps gnused findutils gnugrep ]}"
'';
meta = {
meta = with lib; {
description = "Docker garbage collection of containers and images";
mainProgram = "docker-gc";
license = licenses.asl20;