2024-11-05 04:51:28 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
copyDesktopItems,
|
|
|
|
fontconfig,
|
|
|
|
freetype,
|
|
|
|
libX11,
|
|
|
|
libXext,
|
|
|
|
libXft,
|
|
|
|
libXinerama,
|
|
|
|
makeDesktopItem,
|
|
|
|
pkg-config,
|
|
|
|
which,
|
2020-11-17 13:11:18 +00:00
|
|
|
}:
|
2020-05-13 00:53:59 +00:00
|
|
|
|
2023-09-24 02:47:57 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2020-05-13 00:53:59 +00:00
|
|
|
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";
|
2023-09-24 02:47:57 +00:00
|
|
|
repo = "berry";
|
|
|
|
rev = finalAttrs.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
|
|
|
|
];
|
|
|
|
|
2024-11-05 04:51:28 +00:00
|
|
|
buildInputs = [
|
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
|
|
|
|
fontconfig
|
|
|
|
freetype
|
|
|
|
];
|
2020-05-13 00:53:59 +00:00
|
|
|
|
2024-11-05 04:51:28 +00:00
|
|
|
outputs = [
|
|
|
|
"out"
|
|
|
|
"man"
|
|
|
|
];
|
2023-09-24 02:47:57 +00:00
|
|
|
|
|
|
|
strictDeps = true;
|
|
|
|
|
2022-08-20 21:00:04 +00:00
|
|
|
postPatch = ''
|
2023-09-24 02:47:57 +00:00
|
|
|
sed -i --regexp-extended 's/(pkg_verstr=").*(")/\1${finalAttrs.version}\2/' configure
|
2022-08-20 21:00:04 +00:00
|
|
|
'';
|
|
|
|
|
2022-01-05 21:07:41 +00:00
|
|
|
preConfigure = ''
|
|
|
|
patchShebangs configure
|
2020-05-13 00:53:59 +00:00
|
|
|
'';
|
|
|
|
|
2024-11-05 04:53:56 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-D_C99_SOURCE";
|
|
|
|
|
2022-01-05 21:07:41 +00:00
|
|
|
desktopItems = [
|
|
|
|
(makeDesktopItem {
|
2023-09-24 02:47:57 +00:00
|
|
|
name = "berry";
|
2022-01-05 21:07:41 +00:00
|
|
|
exec = "berry";
|
2023-09-24 02:47:57 +00:00
|
|
|
comment = "A healthy, bite-sized window manager";
|
2022-01-05 21:07:41 +00:00
|
|
|
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
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2023-09-24 02:47:57 +00:00
|
|
|
meta = {
|
2022-03-09 14:54:28 +00:00
|
|
|
homepage = "https://berrywm.org/";
|
2020-05-13 00:53:59 +00:00
|
|
|
description = "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.
|
|
|
|
'';
|
2023-09-24 02:47:57 +00:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
mainProgram = "berry";
|
|
|
|
maintainers = [ lib.maintainers.AndersonTorres ];
|
|
|
|
inherit (libX11.meta) platforms;
|
2020-05-13 00:53:59 +00:00
|
|
|
};
|
2023-09-24 02:47:57 +00:00
|
|
|
})
|