Skip to content

Commit d218f86

Browse files
authored
Merge pull request #331678 from NeverBehave/pkg-micromdm
micromdm: init at 1.12.1
2 parents 6d57c8b + 066bc7b commit d218f86

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)