mmutils: init at 1.4.1

This commit is contained in:
Connor 2022-03-12 15:58:23 -05:00 committed by ehmry
parent ab2b165a5d
commit fcc27fbda3
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, stdenv, fetchFromGitHub, libxcb }:
stdenv.mkDerivation rec {
pname = "wmutils";
version = "1.4.1";
src = fetchFromGitHub {
owner = "pockata";
repo = "mmutils";
rev = "v${version}";
sha256 = "08wlb278m5lr218c87yqashk7farzny51ybl5h6j60i7pbpm01ml";
};
buildInputs = [ libxcb ];
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "A set of utilities for querying xrandr monitor information";
homepage = "https://github.com/pockata/mmutils";
license = licenses.isc;
platforms = platforms.unix;
};
}

View file

@ -7693,6 +7693,8 @@ with pkgs;
mjolnir = callPackage ../servers/mjolnir { };
mmutils = callPackage ../tools/X11/mmutils { };
mmv = callPackage ../tools/misc/mmv { };
mmv-go = callPackage ../tools/misc/mmv-go { };