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
28
PROTOC = "${protobuf}/bin/protoc";
29
29
PROTOC_INCLUDE = "${protobuf}/include";
30
30
31
31
-
buildInputs = [ makeWrapper ] ++ lib.optionals stdenv.isDarwin [ Security ];
31
31
+
nativeBuildInputs = [ makeWrapper ];
32
32
+
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
32
33
33
34
postInstall = ''
34
35
wrapProgram "$out/bin/pict-rs" \
···
36
37
'';
37
38
38
39
meta = with lib; {
39
39
-
description = "a simple image hosting service";
40
40
+
description = "A simple image hosting service";
40
41
homepage = "https://git.asonix.dog/asonix/pict-rs";
41
42
license = with licenses; [ agpl3Plus ];
42
43
maintainers = with maintainers; [ happysalada ];