mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
zfsbackup: apply code review suggestions
This commit is contained in:
parent
d54fda49eb
commit
433bcdd3c3
1 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
# This file was generated by https://github.com/kamilchm/go2nix v1.3.0
|
||||
{ stdenv, buildGoPackage, fetchgit }:
|
||||
{ lib, buildGoPackage, fetchgit }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "zfsbackup";
|
||||
|
@ -16,10 +16,10 @@ buildGoPackage rec {
|
|||
|
||||
goDeps = ./deps.nix;
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "Backup ZFS snapshots to cloud storage such as Google, Amazon, Azure, etc";
|
||||
homepage = "https://github.com/someone1/zfsbackup-go";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
maintainers = [ stdenv.lib.maintainers.xfix ];
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.xfix ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue