add vault-sink

This commit is contained in:
foosinn 2020-11-30 12:03:11 +01:00
parent c4886b737e
commit de2c484d2e
2 changed files with 31 additions and 0 deletions

29
packages/skaffold.nix Normal file
View file

@ -0,0 +1,29 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "skaffold";
version = "1.17.0";
src = fetchurl {
url = "https://github.com/GoogleContainerTools/skaffold/releases/download/v1.17.0/skaffold-linux-amd64";
sha256 = "734a23dfe90b01feb927c44168c93b72afd05d8b978319b4670dc7e6a5e887fe";
};
nativeBuildInputs = [
autoPatchelfHook
];
unpackPhase = ''
cp $src skaffold
'';
installPhase = ''
install -m 755 -D skaffold $out/bin/skaffold
'';
meta = with stdenv.lib; {
homepage = "https://skaffold.dev";
description = "skaffold";
platforms = platforms.linux;
maintainers = with maintainers; [ foosinn ];
};
}

View file

@ -16,6 +16,8 @@ in {
podman-compose
fuse-overlayfs
(import ../packages/skaffold.nix)
];
virtualisation.podman = {