nix-packages/scripts/clean-s3-cache.nix

32 lines
665 B
Nix
Raw Normal View History

2022-06-11 14:04:50 +00:00
{
2022-09-30 14:34:31 +00:00
python3,
boto3,
aiohttp,
2022-09-30 14:34:31 +00:00
stdenvNoCC,
lib,
}: let
2022-09-30 15:36:20 +00:00
clean-s3-cache-env = python3.buildEnv.override {
extraLibs = [boto3 aiohttp];
2022-06-11 12:55:50 +00:00
};
2022-09-30 15:37:09 +00:00
in
stdenvNoCC.mkDerivation {
2022-09-30 14:34:31 +00:00
name = "clean-s3-cache";
src = ./clean-s3-cache.py;
python = clean-s3-cache-env;
2022-09-30 14:34:31 +00:00
unpackPhase = ''
cp $src clean-s3-cache.py
'';
2022-06-11 12:55:50 +00:00
buildPhase = ''
substituteAllInPlace clean-s3-cache.py
2022-06-11 12:55:50 +00:00
'';
installPhase = ''
mkdir -p $out/bin
cp clean-s3-cache.py $out/bin
chmod +x $out/bin/clean-s3-cache.py
'';
2022-09-30 14:34:31 +00:00
meta = {
description = "Scriept for cleaning a nix s3 binary cache";
license = lib.licenses.bsd2;
};
2022-09-30 15:37:09 +00:00
}