tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
c2FmZQ: init at 0.4.8
Co-authored-by: h7x4 <h7x4@nani.wtf>
Henri Menke
2 years ago
356a40ad
14f19f0d
+33
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
c2
c2fmzq
package.nix
+33
pkgs/by-name/c2/c2fmzq/package.nix
···
1
1
+
{ lib
2
2
+
, buildGoModule
3
3
+
, fetchFromGitHub
4
4
+
}:
5
5
+
6
6
+
buildGoModule rec {
7
7
+
pname = "c2FmZQ";
8
8
+
version = "0.4.8";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "c2FmZQ";
12
12
+
repo = "c2FmZQ";
13
13
+
rev = "v${version}";
14
14
+
hash = "sha256-IYSmGzjTDMBgEMVZsi6CuUz6L7BzpmbrJYVPUhFr7rw=";
15
15
+
};
16
16
+
17
17
+
ldflags = [ "-s" "-w" ];
18
18
+
19
19
+
sourceRoot = "source/c2FmZQ";
20
20
+
21
21
+
vendorHash = "sha256-Hz6P+ptn1i+8Ek3pp8j+iB8NN5Xks50jyZuT8Ullxbo=";
22
22
+
23
23
+
subPackages = [ "c2FmZQ-client" "c2FmZQ-server" ];
24
24
+
25
25
+
meta = with lib; {
26
26
+
description = "Securely encrypt, store, and share files, including but not limited to pictures and videos";
27
27
+
homepage = "https://github.com/c2FmZQ/c2FmZQ";
28
28
+
license = licenses.gpl3Only;
29
29
+
mainProgram = "c2FmZQ-server";
30
30
+
maintainers = with maintainers; [ hmenke ];
31
31
+
platforms = platforms.linux;
32
32
+
};
33
33
+
}