mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
43 lines
948 B
Nix
43 lines
948 B
Nix
{ stdenv
|
|
, darwin
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "m1ddc";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "waydabber";
|
|
repo = "m1ddc";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-obs2qQvSkIDsWhCXJOF1Geiqqy19KDf0InyxRVod4hk=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace sources/ioregistry.m \
|
|
--replace-fail kIOMainPortDefault kIOMasterPortDefault
|
|
'';
|
|
|
|
buildInputs = with darwin.apple_sdk_11_0.frameworks; [
|
|
CoreDisplay
|
|
Foundation
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
cp m1ddc $out/bin
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Control external displays using DDC/CI on Apple Silicon Macs";
|
|
homepage = "https://github.com/waydabber/m1ddc";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "m1ddc";
|
|
maintainers = [ lib.maintainers.joanmassachs ];
|
|
platforms = [ "aarch64-darwin" ];
|
|
};
|
|
})
|