mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
micromdm: init at 1.12.1
This commit is contained in:
parent
229d67249a
commit
066bc7b352
28
pkgs/by-name/mi/micromdm/package.nix
Normal file
28
pkgs/by-name/mi/micromdm/package.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "micromdm";
|
||||
version = "1.12.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "micromdm";
|
||||
repo = "micromdm";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-hFoInkeJAd5h6UiF19YE9f6kkIZRmhVFVvUAkSkSqlM=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-XYrv/cjma2ZYHs2x6hSXxifuS10Xa/zUx4s5O/OMLf4=";
|
||||
|
||||
meta = {
|
||||
description = "Mobile Device Management server for Apple Devices, focused on giving you all the power through an API";
|
||||
homepage = "https://github.com/micromdm/micromdm";
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "micromdm";
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = with lib.maintainers; [ neverbehave ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user