summary refs log tree commit diff
path: root/pkgs/applications/networking/c14/default.nix
blob: c000a37ff02969137f77e13beb92771781d81d94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "c14-cli";
  version = "0.3";

  goPackagePath = "github.com/online-net/c14-cli";

  src = fetchFromGitHub {
    owner = "online-net";
    repo = "c14-cli";
    rev = version;
    sha256 = "0b1piviy6vvdbak8y8bc24rk3c1fi67vv3352pmnzvrhsar2r5yf";
  };

  goDeps = ./deps.nix;

  meta = with stdenv.lib; {
    description = "C14 is designed for data archiving & long-term backups.";
    homepage = https://www.online.net/en/storage/c14-cold-storage;
    license = licenses.mit;
    maintainers = with maintainers; [ apeyroux ];
  };
}