pruner 0.66.0

A command-line utility and library to prune backups on a schedule.
Documentation
1
2
3
4
5
6
7
8
9
10
{
	nixpkgs ? import <nixpkgs> {},
	naersk ? nixpkgs.pkgs.callPackage (fetchTarball "https://github.com/nmattia/naersk/archive/master.tar.gz") {},
}:
with nixpkgs;
rec {
	pruner = naersk.buildPackage {
		root = pkgs.nix-gitignore.gitignoreSource [".*" "*.nix"] ./.;
	};
}