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

buildGoPackage rec {
  name = "c14-cli-unstable-${version}";
  version = "2017-05-15";
  rev = "97f437ef5133f73edd551c883db3076c76cb1f6b";

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

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

  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 ];
  };
}