mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 08:31:59 +00:00
34 lines
941 B
Nix
34 lines
941 B
Nix
|
{ stdenv, lib, fetchFromGitHub, makeWrapper, docker, coreutils, procps, gnused, findutils, gnugrep }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "docker-gc-${rev}";
|
||
|
rev = "b0cc52aa3da2e2ac0080794e0be6e674b1f063fc";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
inherit rev;
|
||
|
owner = "spotify";
|
||
|
repo = "docker-gc";
|
||
|
sha256 = "07wf9yn0f771xkm3x12946x5rp83hxjkd70xgfgy35zvj27wskzm";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ makeWrapper ];
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/bin
|
||
|
cp docker-gc $out/bin
|
||
|
chmod +x $out/bin/docker-gc
|
||
|
wrapProgram $out/bin/docker-gc \
|
||
|
--prefix PATH : "${docker}/bin:${coreutils}/bin:${procps}/bin:${gnused}/bin:${findutils}/bin:${gnugrep}/bin"
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
description = "Docker garbage collection of containers and images";
|
||
|
license = licenses.asl20;
|
||
|
homepage = https://github.com/spotify/docker-gc;
|
||
|
maintainers = with maintainers; [offline];
|
||
|
platforms = docker.meta.platforms;
|
||
|
};
|
||
|
}
|