Merge pull request #11057 from offlinehacker/pkgs/docker-gc/add
docker-gc: init at b0cc52aa3da2e2ac0080794e0be6e674b1f063fc
This commit is contained in:
commit
8f806d88bf
2 changed files with 35 additions and 0 deletions
33
pkgs/applications/virtualization/docker/gc.nix
Normal file
33
pkgs/applications/virtualization/docker/gc.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
|
@ -11268,6 +11268,8 @@ let
|
|||
|
||||
docker = callPackage ../applications/virtualization/docker { go = go_1_4; };
|
||||
|
||||
docker-gc = callPackage ../applications/virtualization/docker/gc.nix { };
|
||||
|
||||
doodle = callPackage ../applications/search/doodle { };
|
||||
|
||||
drumgizmo = callPackage ../applications/audio/drumgizmo { };
|
||||
|
|
Loading…
Reference in a new issue