forked from mirrors/nixpkgs
berry: init at 0.1.5
berry is a small window manager for X11
This commit is contained in:
parent
6aeaa1019c
commit
43ce2a5219
25
nixos/modules/services/x11/window-managers/berry.nix
Normal file
25
nixos/modules/services/x11/window-managers/berry.nix
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.services.xserver.windowManager.berry;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
###### interface
|
||||||
|
options = {
|
||||||
|
services.xserver.windowManager.berry.enable = mkEnableOption "berry";
|
||||||
|
};
|
||||||
|
|
||||||
|
###### implementation
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
services.xserver.windowManager.session = singleton {
|
||||||
|
name = "berry";
|
||||||
|
start = ''
|
||||||
|
${pkgs.berry}/bin/berry &
|
||||||
|
waitPID=$!
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
environment.systemPackages = [ pkgs.berry ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -10,6 +10,7 @@ in
|
||||||
imports = [
|
imports = [
|
||||||
./2bwm.nix
|
./2bwm.nix
|
||||||
./afterstep.nix
|
./afterstep.nix
|
||||||
|
./berry.nix
|
||||||
./bspwm.nix
|
./bspwm.nix
|
||||||
./cwm.nix
|
./cwm.nix
|
||||||
./dwm.nix
|
./dwm.nix
|
||||||
|
|
47
pkgs/applications/window-managers/berry/default.nix
Normal file
47
pkgs/applications/window-managers/berry/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{ stdenv, fetchFromGitHub
|
||||||
|
, libX11, libXft, libXinerama, fontconfig, freetype }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "berry";
|
||||||
|
version = "0.1.5";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "JLErvin";
|
||||||
|
repo = "berry";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1wxbjzpwqb9x7vd7kb095fiqj271rki980dnwcxjxpqlmmrmjzyl";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libX11 libXft libXinerama fontconfig freetype ];
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
makeFlagsArray+=( PREFIX="${placeholder "out"}"
|
||||||
|
X11INC="${libX11.dev}/include"
|
||||||
|
X11LIB="${libX11}/lib"
|
||||||
|
XINERAMALIBS="-lXinerama"
|
||||||
|
XINERAMAFLAGS="-DXINERAMA"
|
||||||
|
FREETYPELIBS="-lfontconfig -lXft"
|
||||||
|
FREETYPEINC="${freetype.dev}/include/freetype2" )
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A healthy, bite-sized window manager";
|
||||||
|
longDescription = ''
|
||||||
|
berry is a healthy, bite-sized window manager written in C for unix
|
||||||
|
systems. Its main features include:
|
||||||
|
|
||||||
|
- Controlled via a powerful command-line client, allowing users to control
|
||||||
|
windows via a hotkey daemon such as sxhkd or expand functionality via
|
||||||
|
shell scripts.
|
||||||
|
- Small, hackable source code.
|
||||||
|
- Extensible themeing options with double borders, title bars, and window
|
||||||
|
text.
|
||||||
|
- Intuitively place new windows in unoccupied spaces.
|
||||||
|
- Virtual desktops.
|
||||||
|
'';
|
||||||
|
homepage = "https://berrywm.org/";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.AndersonTorres ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -18675,6 +18675,8 @@ in
|
||||||
|
|
||||||
bb = callPackage ../applications/misc/bb { };
|
bb = callPackage ../applications/misc/bb { };
|
||||||
|
|
||||||
|
berry = callPackage ../applications/window-managers/berry { };
|
||||||
|
|
||||||
bevelbar = callPackage ../applications/window-managers/bevelbar { };
|
bevelbar = callPackage ../applications/window-managers/bevelbar { };
|
||||||
|
|
||||||
bibletime = libsForQt5.callPackage ../applications/misc/bibletime { };
|
bibletime = libsForQt5.callPackage ../applications/misc/bibletime { };
|
||||||
|
|
Loading…
Reference in a new issue