Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / by-name / c2 / c2fmzq / package.nix
blobae21cc0e50074f261e69a3739c1347461d0fc763
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , nixosTests
5 }:
7 buildGoModule rec {
8   pname = "c2FmZQ";
9   version = "0.4.9";
11   src = fetchFromGitHub {
12     owner = "c2FmZQ";
13     repo = "c2FmZQ";
14     rev = "v${version}";
15     hash = "sha256-xrQBL/Xjzsg0jZ7cFuDfjCQhmt/dTD8FoCSlw0sX5MQ=";
16   };
18   ldflags = [ "-s" "-w" ];
20   sourceRoot = "source/c2FmZQ";
22   vendorHash = "sha256-Hz6P+ptn1i+8Ek3pp8j+iB8NN5Xks50jyZuT8Ullxbo=";
24   subPackages = [ "c2FmZQ-client" "c2FmZQ-server" ];
26   passthru.tests = { inherit (nixosTests) c2fmzq; };
28   meta = with lib; {
29     description = "Securely encrypt, store, and share files, including but not limited to pictures and videos";
30     homepage = "https://github.com/c2FmZQ/c2FmZQ";
31     license = licenses.gpl3Only;
32     mainProgram = "c2FmZQ-server";
33     maintainers = with maintainers; [ hmenke ];
34     platforms = platforms.linux;
35   };