We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 355ac7e commit 05330c7Copy full SHA for 05330c7
nix/overlay.nix
@@ -6,6 +6,7 @@ self: super: {
6
vmpserverd = super.callPackage ./vmpserverd.nix {
7
libdispatch = self.libdispatch;
8
microhttpkit = self.microhttpkit;
9
+ calendarkit = self.calendarkit;
10
};
11
}
12
nix/vmpserverd.nix
@@ -1,6 +1,7 @@
1
{ lib
2
, libdispatch
3
, microhttpkit
4
+, calendarkit
5
, gnustep
, glib
, gst_all_1
@@ -24,6 +25,7 @@ gnustep.stdenv.mkDerivation rec {
24
25
gnustep.base
26
libdispatch
27
microhttpkit
28
+ calendarkit
29
glib
30
gst_all_1.gstreamer
31
gst_all_1.gst-rtsp-server
shell.nix
@@ -39,6 +39,7 @@ pkgs.mkShell {
39
pkgs.udev
40
pkgs.libdispatch
41
pkgs.microhttpkit
42
+ pkgs.calendarkit
43
pkgs.glib
44
pkgs.xctest
45
0 commit comments