dwlmsg: init

This commit is contained in:
Zynh Ludwig 2025-02-24 01:26:49 -08:00
parent 5149372f44
commit d9d9a72656
4 changed files with 43 additions and 2 deletions

View file

@ -935,14 +935,14 @@
"locked": {
"lastModified": 1740387546,
"narHash": "sha256-9JscMjA4ZMSnMV7cN83ONLL29SeYmJnlEFrKQ9vsYpk=",
"ref": "0.7ipc",
"ref": "0.7",
"rev": "1abb07a6c13edcedcbe0f3b19b7976b29cbe3ed7",
"revCount": 1276,
"type": "git",
"url": "https://git.zynh.me/Zynh0722/dwl"
},
"original": {
"ref": "0.7ipc",
"ref": "0.7",
"type": "git",
"url": "https://git.zynh.me/Zynh0722/dwl"
}

View file

@ -75,6 +75,8 @@ in
slurp
satty
dwlmsg
wdisplays
xorg.xlsclients

View file

@ -11,5 +11,6 @@ in
zenBrowser = callDefaultPackage ./zenBrowser;
rose-pine-grub = callDefaultPackage ./rosePineGrub;
dwm-msg = callDefaultPackage ./dwm-msg;
dwlmsg = callDefaultPackage ./dwlmsg;
uhk-agent = callDefaultPackage ./uhk-agent;
}

38
pkgs/dwlmsg/default.nix Normal file
View file

@ -0,0 +1,38 @@
{ lib
, stdenv
, fetchgit
, pkg-config
, wayland-scanner
, kdePackages
,
}:
stdenv.mkDerivation {
pname = "dwlmsg";
version = "0-unstable-2025-01-13";
src = fetchgit {
url = "https://codeberg.org/notchoc/dwlmsg/";
rev = "7cfc2635984611e6eceef011084f21c22979b3d0";
hash = "sha256-uEw9QY0WveM8cu7uhXLbIKLYgtmyUyMxEDti+uWLoCU=";
};
nativeBuildInputs = [
pkg-config
];
buildInputs = [
wayland-scanner
kdePackages.wayland
];
makeFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with lib; {
description = "send ipc messages to dwl";
homepage = "https://codeberg.org/notchoc/dwlmsg";
license = licenses.unfree;
mainProgram = "dwm-msg";
maintainers = with lib.maintainers; [ nullcube ];
};
}