mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
2d9bf01310
And add myself as a maintainer
70 lines
1.2 KiB
Nix
70 lines
1.2 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, libxkbcommon
|
|
, pango
|
|
, which
|
|
, git
|
|
, cairo
|
|
, libxcb
|
|
, xcbutil
|
|
, xcbutilwm
|
|
, xcbutilxrm
|
|
, xcb-util-cursor
|
|
, libstartup_notification
|
|
, bison
|
|
, flex
|
|
, librsvg
|
|
, check
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rofi-unwrapped";
|
|
version = "1.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "davatorium";
|
|
repo = "rofi";
|
|
rev = version;
|
|
fetchSubmodules = true;
|
|
sha256 = "03wdy56b3g8p2czb0qydrddyyhj3x037pirnhyqr5qbfczb9a63v";
|
|
};
|
|
|
|
preConfigure = ''
|
|
patchShebangs "script"
|
|
# root not present in build /etc/passwd
|
|
sed -i 's/~root/~nobody/g' test/helper-expand.c
|
|
'';
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [
|
|
libxkbcommon
|
|
pango
|
|
cairo
|
|
git
|
|
bison
|
|
flex
|
|
librsvg
|
|
check
|
|
libstartup_notification
|
|
libxcb
|
|
xcbutil
|
|
xcbutilwm
|
|
xcbutilxrm
|
|
xcb-util-cursor
|
|
which
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Window switcher, run dialog and dmenu replacement";
|
|
homepage = "https://github.com/davatorium/rofi";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bew ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|