mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
iio-hyprland: init at 0-unstable-2024-07-24
This commit is contained in:
parent
bafbee132d
commit
b523a839fd
1 changed files with 42 additions and 0 deletions
42
pkgs/by-name/ii/iio-hyprland/package.nix
Normal file
42
pkgs/by-name/ii/iio-hyprland/package.nix
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
unstableGitUpdater,
|
||||
meson,
|
||||
cmake,
|
||||
pkg-config,
|
||||
dbus,
|
||||
ninja,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "iio-hyprland";
|
||||
version = "0-unstable-2024-07-24";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "JeanSchoeller";
|
||||
repo = "iio-hyprland";
|
||||
rev = "bbf59e10cbf293e64b765864a324e971fcc06125";
|
||||
hash = "sha256-9tB29tP3ZQ2tU2c+FrWrGqSm70ZrJP8H9WZKzHx55zI=";
|
||||
};
|
||||
|
||||
buildInputs = [ dbus ];
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
cmake
|
||||
pkg-config
|
||||
ninja
|
||||
];
|
||||
|
||||
passthru.updateScript = unstableGitUpdater { };
|
||||
|
||||
meta = {
|
||||
description = "Listens to iio-sensor-proxy and automatically changes Hyprland output orientation";
|
||||
homepage = "https://github.com/JeanSchoeller/iio-hyprland/tree/master";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ yusuf-duran ];
|
||||
platforms = lib.platforms.linux;
|
||||
mainProgram = "iio-hyprland";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue