about summary refs log tree commit diff
path: root/pkgs/applications/networking/c14/default.nix
blob: 188ccdd71d4e3e02b3edb2fee47cb7ab918ed690 (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
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "c14-cli-2016-09-09";
  goPackagePath = "github.com/online-net/c14-cli";
  subPackages = [ "cmd/c14" ];

  src = fetchFromGitHub {
    owner = "online-net";
    repo = "c14-cli";
    rev = "e7c7c3cb214fd06df63530a4e861210e7a0a1b6c";
    sha256 = "1k53lii2c04j8cy1bnyfvckl9fglprxp75cmbg15lrp9iic2w22a";
  };

  goDeps = ./deps.nix;

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