mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
23 lines
587 B
Nix
23 lines
587 B
Nix
{ 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";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|