zfs-prune-snapshots: init at 1.1.0
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
{ stdenv, fetchFromGitHub, go-md2man }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.1.0";
|
||||
pname = "zfs-prune-snapshots";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bahamas10";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "09dz9v6m47dxfvfncz0k926dqfhagm87kd33dcw66cbw15ac3spx";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ go-md2man ];
|
||||
|
||||
makeTargets = [ "man" ];
|
||||
|
||||
installPhase = ''
|
||||
install -m 755 -D zfs-prune-snapshots $out/bin/zfs-prune-snapshots
|
||||
install -m 644 -D man/zfs-prune-snapshots.1 $out/share/man/man1/zfs-prune-snapshots.1
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Remove snapshots from one or more zpools that match given criteria";
|
||||
homepage = "https://github.com/bahamas10/zfs-prune-snapshots";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.ymarkus ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user