tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pict-rs: fixes
happysalada
4 years ago
1320843a
f8da79b5
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
servers
web-apps
pict-rs
default.nix
+3
-2
pkgs/servers/web-apps/pict-rs/default.nix
···
28
PROTOC = "${protobuf}/bin/protoc";
29
PROTOC_INCLUDE = "${protobuf}/include";
30
31
-
buildInputs = [ makeWrapper ] ++ lib.optionals stdenv.isDarwin [ Security ];
0
32
33
postInstall = ''
34
wrapProgram "$out/bin/pict-rs" \
···
36
'';
37
38
meta = with lib; {
39
-
description = "a simple image hosting service";
40
homepage = "https://git.asonix.dog/asonix/pict-rs";
41
license = with licenses; [ agpl3Plus ];
42
maintainers = with maintainers; [ happysalada ];
···
28
PROTOC = "${protobuf}/bin/protoc";
29
PROTOC_INCLUDE = "${protobuf}/include";
30
31
+
nativeBuildInputs = [ makeWrapper ];
32
+
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
33
34
postInstall = ''
35
wrapProgram "$out/bin/pict-rs" \
···
37
'';
38
39
meta = with lib; {
40
+
description = "A simple image hosting service";
41
homepage = "https://git.asonix.dog/asonix/pict-rs";
42
license = with licenses; [ agpl3Plus ];
43
maintainers = with maintainers; [ happysalada ];