about summary refs log tree commit diff
path: root/pkgs/by-name/hy
diff options
context:
space:
mode:
authorJohn Titor <50095635+JohnRTitor@users.noreply.github.com>2024-06-19 21:24:54 +0530
committerJohn Titor <50095635+JohnRTitor@users.noreply.github.com>2024-06-19 21:26:01 +0530
commitdda39b703d8760ddf05a10031ea3d246d406127b (patch)
treea6458aad28e409b298ab09294048bb51dc644ad5 /pkgs/by-name/hy
parent66a9a80d837038f9c77099668bf255025891784f (diff)
hyprutils: 0.1.2 -> 0.1.4
Diffstat (limited to 'pkgs/by-name/hy')
-rw-r--r--pkgs/by-name/hy/hyprutils/package.nix21
1 files changed, 15 insertions, 6 deletions
diff --git a/pkgs/by-name/hy/hyprutils/package.nix b/pkgs/by-name/hy/hyprutils/package.nix
index f29cb3665fbda..1ad3a925ff323 100644
--- a/pkgs/by-name/hy/hyprutils/package.nix
+++ b/pkgs/by-name/hy/hyprutils/package.nix
@@ -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
+  ];
 
-  outputs = [ "out" "dev" ];
+  buildInputs = [
+    pixman
+  ];
 
-  doCheck = false;
+  outputs = ["out" "dev"];
+
+  cmakeBuildType = "RelWithDebInfo";
 
   meta = {
     homepage = "https://github.com/hyprwm/hyprutils";