We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6d57c8b + 066bc7b commit d218f86Copy full SHA for d218f86
1 file changed
pkgs/by-name/mi/micromdm/package.nix
@@ -0,0 +1,28 @@
1
+{
2
+ lib,
3
+ buildGoModule,
4
+ fetchFromGitHub,
5
+}:
6
+
7
+buildGoModule rec {
8
+ pname = "micromdm";
9
+ version = "1.12.1";
10
11
+ src = fetchFromGitHub {
12
+ owner = "micromdm";
13
+ repo = "micromdm";
14
+ rev = "v${version}";
15
+ hash = "sha256-hFoInkeJAd5h6UiF19YE9f6kkIZRmhVFVvUAkSkSqlM=";
16
+ };
17
18
+ vendorHash = "sha256-XYrv/cjma2ZYHs2x6hSXxifuS10Xa/zUx4s5O/OMLf4=";
19
20
+ meta = {
21
+ description = "Mobile Device Management server for Apple Devices, focused on giving you all the power through an API";
22
+ homepage = "https://github.com/micromdm/micromdm";
23
+ license = lib.licenses.mit;
24
+ mainProgram = "micromdm";
25
+ platforms = lib.platforms.unix;
26
+ maintainers = with lib.maintainers; [ neverbehave ];
27
28
+}
0 commit comments