nixpkgs/pkgs/applications/window-managers/berry/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

82 lines
1.7 KiB
Nix
Raw Normal View History

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