lesbar: init at 1.1.0

This commit is contained in:
Joseph Pentland 2023-10-07 15:07:38 +02:00
parent 4869fd427a
commit 0eb06a8d37
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, stdenv
, fetchFromSourcehut
, pkg-config
, scdoc
, libX11
, cairo
, pango
}:
stdenv.mkDerivation (finalAttrs: {
pname = "lesbar";
version = "1.1.0";
src = fetchFromSourcehut {
owner = "~salmiak";
repo = "lesbar";
rev = "v${finalAttrs.version}";
hash = "sha256-uggIoO6rgotkLi6lSJTR4d3NtidXsAC1Kjay9YsT9ps=";
};
nativeBuildInputs = [ pkg-config scdoc ];
buildInputs = [ libX11 cairo pango ];
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "A programming language agnostic view layer for creating desktop widgets and status bars";
homepage = "https://git.sr.ht/~salmiak/lesbar";
license = licenses.mit;
maintainers = with maintainers; [ jpentland ];
platforms = platforms.linux;
};
})

View File

@ -22527,6 +22527,8 @@ with pkgs;
lensfun = callPackage ../development/libraries/lensfun { };
lesbar = callPackage ../applications/window-managers/lesbar { };
lesstif = callPackage ../development/libraries/lesstif { };
leveldb = callPackage ../development/libraries/leveldb { };