depot/pkgs/by-name/m1/m1ddc/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

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" ];
};
})