mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
lesbar: init at 1.1.0
This commit is contained in:
parent
4869fd427a
commit
0eb06a8d37
35
pkgs/applications/window-managers/lesbar/default.nix
Normal file
35
pkgs/applications/window-managers/lesbar/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user