Unverified Commit 683c32b8 authored by Masum Reza's avatar Masum Reza Committed by GitHub
Browse files

hypridle: 0.1.2 -> 0.1.3 (#350388)

parents 402a8368 08378ef1
Loading
Loading
Loading
Loading
+20 −14
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, cmake
, wayland
, wayland-protocols
, wayland-scanner
, hyprlang
, sdbus-cpp
, systemd
{
  lib,
  stdenv,
  fetchFromGitHub,
  pkg-config,
  cmake,
  hyprutils,
  wayland,
  wayland-protocols,
  wayland-scanner,
  hyprlang,
  sdbus-cpp,
  systemd,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "hypridle";
  version = "0.1.2";
  version = "0.1.3";

  src = fetchFromGitHub {
    owner = "hyprwm";
    repo = "hypridle";
    rev = "v${finalAttrs.version}";
    hash = "sha256-7Ft5WZTMIjXOGgRCf31DZBwK6RK8xkeKlD5vFXz3gII=";
    hash = "sha256-4EgQyprji92cmhGaQQsw6eN6cmEkQKs0+MeD7YLgHlg=";
  };

  nativeBuildInputs = [
@@ -30,6 +32,7 @@ stdenv.mkDerivation (finalAttrs: {

  buildInputs = [
    hyprlang
    hyprutils
    sdbus-cpp
    systemd
    wayland
@@ -42,6 +45,9 @@ stdenv.mkDerivation (finalAttrs: {
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ iogamaster ];
    mainProgram = "hypridle";
    platforms = [ "aarch64-linux" "x86_64-linux" ];
    platforms = [
      "aarch64-linux"
      "x86_64-linux"
    ];
  };
})