2022-01-05 21:07:41 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-11-17 13:11:18 +00:00
|
|
|
, fetchFromGitHub
|
2022-01-05 21:07:41 +00:00
|
|
|
, copyDesktopItems
|
|
|
|
, fontconfig
|
|
|
|
, freetype
|
2020-11-17 13:11:18 +00:00
|
|
|
, libX11
|
2020-12-08 18:10:27 +00:00
|
|
|
, libXext
|
2020-11-17 13:11:18 +00:00
|
|
|
, libXft
|
|
|
|
, libXinerama
|
2022-01-05 21:07:41 +00:00
|
|
|
, makeDesktopItem
|
|
|
|
, pkg-config
|
|
|
|
, which
|
2020-11-17 13:11:18 +00:00
|
|
|
}:
|
2020-05-13 00:53:59 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "berry";
|
2022-10-24 13:35:12 +00:00
|
|
|
version = "0.1.12";
|
2020-05-13 00:53:59 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "JLErvin";
|
2020-11-17 13:11:18 +00:00
|
|
|
repo = pname;
|
2020-05-13 00:53:59 +00:00
|
|
|
rev = version;
|
2022-10-24 13:35:12 +00:00
|
|
|
hash = "sha256-xMJRiLNtwVRQf9HiCF3ClLKEmdDNxcY35IYxe+L7+Hk=";
|
2020-05-13 00:53:59 +00:00
|
|
|
};
|
|
|
|
|
2022-01-05 21:07:41 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
copyDesktopItems
|
|
|
|
pkg-config
|
|
|
|
which
|
|
|
|
];
|
|
|
|
|
2020-11-17 13:11:18 +00:00
|
|
|
buildInputs =[
|
|
|
|
libX11
|
2020-12-08 18:10:27 +00:00
|
|
|
libXext
|
2020-11-17 13:11:18 +00:00
|
|
|
libXft
|
|
|
|
libXinerama
|
|
|
|
fontconfig
|
|
|
|
freetype
|
|
|
|
];
|
2020-05-13 00:53:59 +00:00
|
|
|
|
2022-08-20 21:00:04 +00:00
|
|
|
postPatch = ''
|
|
|
|
sed -i --regexp-extended 's/(pkg_verstr=").*(")/\1${version}\2/' configure
|
|
|
|
'';
|
|
|
|
|
2022-01-05 21:07:41 +00:00
|
|
|
preConfigure = ''
|
|
|
|
patchShebangs configure
|
2020-05-13 00:53:59 +00:00
|
|
|
'';
|
|
|
|
|
2022-01-05 21:07:41 +00:00
|
|
|
desktopItems = [
|
|
|
|
(makeDesktopItem {
|
|
|
|
name = pname;
|
|
|
|
exec = "berry";
|
|
|
|
comment = meta.description;
|
|
|
|
desktopName = "Berry Window Manager";
|
|
|
|
genericName = "Berry Window Manager";
|
2022-02-22 14:56:15 +00:00
|
|
|
categories = [ "Utility" ];
|
2022-01-05 21:07:41 +00:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2022-03-09 14:54:28 +00:00
|
|
|
homepage = "https://berrywm.org/";
|
2020-05-13 00:53:59 +00:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|