mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-06 13:53:05 +00:00
57 lines
1.3 KiB
Nix
57 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
apple-sdk_11,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
testers,
|
|
nix-update-script,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "JankyBorders";
|
|
version = "1.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FelixKratz";
|
|
repo = "JankyBorders";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-DX1d228UCOI+JU+RxenhiGyn3AiqpsGe0aCtr091szs=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
apple-sdk_11
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
cp ./bin/borders $out/bin/borders
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
tests.version = testers.testVersion {
|
|
package = finalAttrs.finalPackage;
|
|
version = "borders-v${finalAttrs.version}";
|
|
};
|
|
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "JankyBorders is a lightweight tool designed to add colored borders to user windows on macOS 14.0+";
|
|
longDescription = "It enhances the user experience by visually highlighting the currently focused window without relying on the accessibility API, thereby being faster than comparable tools.";
|
|
homepage = "https://github.com/FelixKratz/JankyBorders";
|
|
license = lib.licenses.gpl3;
|
|
mainProgram = "borders";
|
|
maintainers = with lib.maintainers; [ khaneliman ];
|
|
platforms = lib.platforms.darwin;
|
|
};
|
|
})
|