lol

c2FmZQ: init at 0.4.8

Co-authored-by: h7x4 <h7x4@nani.wtf>

+33
+33
pkgs/by-name/c2/c2fmzq/package.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "c2FmZQ"; 8 + version = "0.4.8"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "c2FmZQ"; 12 + repo = "c2FmZQ"; 13 + rev = "v${version}"; 14 + hash = "sha256-IYSmGzjTDMBgEMVZsi6CuUz6L7BzpmbrJYVPUhFr7rw="; 15 + }; 16 + 17 + ldflags = [ "-s" "-w" ]; 18 + 19 + sourceRoot = "source/c2FmZQ"; 20 + 21 + vendorHash = "sha256-Hz6P+ptn1i+8Ek3pp8j+iB8NN5Xks50jyZuT8Ullxbo="; 22 + 23 + subPackages = [ "c2FmZQ-client" "c2FmZQ-server" ]; 24 + 25 + meta = with lib; { 26 + description = "Securely encrypt, store, and share files, including but not limited to pictures and videos"; 27 + homepage = "https://github.com/c2FmZQ/c2FmZQ"; 28 + license = licenses.gpl3Only; 29 + mainProgram = "c2FmZQ-server"; 30 + maintainers = with maintainers; [ hmenke ]; 31 + platforms = platforms.linux; 32 + }; 33 + }