nixpkgs/pkgs/applications/networking/c14/default.nix

25 lines
588 B
Nix
Raw Normal View History

2016-10-02 10:33:47 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "c14-cli";
2018-04-14 07:29:30 +00:00
version = "0.3";
2016-10-02 10:33:47 +00:00
goPackagePath = "github.com/online-net/c14-cli";
src = fetchFromGitHub {
owner = "online-net";
repo = "c14-cli";
2019-09-08 23:38:31 +00:00
rev = version;
2018-04-14 07:29:30 +00:00
sha256 = "0b1piviy6vvdbak8y8bc24rk3c1fi67vv3352pmnzvrhsar2r5yf";
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;
2016-10-02 10:33:47 +00:00
license = licenses.mit;
maintainers = with maintainers; [ apeyroux ];
};
}