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 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
}:
stdenv.mkDerivation rec {
pname = "berry";
2022-10-24 13:35:12 +00:00
version = "0.1.12";
src = fetchFromGitHub {
owner = "JLErvin";
2020-11-17 13:11:18 +00:00
repo = pname;
rev = version;
2022-10-24 13:35:12 +00:00
hash = "sha256-xMJRiLNtwVRQf9HiCF3ClLKEmdDNxcY35IYxe+L7+Hk=";
};
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
];
postPatch = ''
sed -i --regexp-extended 's/(pkg_verstr=").*(")/\1${version}\2/' configure
'';
2022-01-05 21:07:41 +00:00
preConfigure = ''
patchShebangs configure
'';
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";
categories = [ "Utility" ];
2022-01-05 21:07:41 +00:00
})
];
meta = with lib; {
2022-03-09 14:54:28 +00: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;
};
}