2016-10-02 10:33:47 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2017-05-23 07:45:18 +00:00
|
|
|
name = "c14-cli-unstable-${version}";
|
|
|
|
version = "2017-05-15";
|
|
|
|
rev = "97f437ef5133f73edd551c883db3076c76cb1f6b";
|
|
|
|
|
2016-10-02 10:33:47 +00:00
|
|
|
goPackagePath = "github.com/online-net/c14-cli";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "online-net";
|
|
|
|
repo = "c14-cli";
|
2017-05-23 07:45:18 +00:00
|
|
|
inherit rev;
|
|
|
|
sha256 = "1b44bh0zhh6rhw4d3nprnnxhjgaskl9kzp2cvwwyli5svhjxrfdj";
|
2016-10-02 10:33:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|