Unverified Commit 1c3a28d8 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

Merge pull request #321069 from JohnRTitor/hyprutils

hyprutils: 0.1.2 -> 0.1.4
parents 98e8403e dda39b70
Loading
Loading
Loading
Loading
+15 −6
Original line number Diff line number Diff line
@@ -2,25 +2,34 @@
  lib,
  stdenv,
  cmake,
  pkg-config,
  pixman,
  fetchFromGitHub,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "hyprutils";
  version = "0.1.2";
  version = "0.1.4";

  src = fetchFromGitHub {
    owner = "hyprwm";
    repo = "hyprutils";
    rev = "v${finalAttrs.version}";
    hash = "sha256-8KvVqtApNt4FWTdn1TqVvw00rpqyG9UuUPA2ilPVD1U=";
    rev = "refs/tags/v${finalAttrs.version}";
    hash = "sha256-CqRZne63BpYlPd/i8lXV0UInUt59oKogiwdVtBRHt60=";
  };

  nativeBuildInputs = [ cmake ];
  nativeBuildInputs = [
    cmake
    pkg-config
  ];

  buildInputs = [
    pixman
  ];

  outputs = ["out" "dev"];

  doCheck = false;
  cmakeBuildType = "RelWithDebInfo";

  meta = {
    homepage = "https://github.com/hyprwm/hyprutils";