nixpkgs/pkgs/applications/misc/rofi/default.nix

43 lines
1.3 KiB
Nix
Raw Normal View History

2016-12-31 15:22:22 +01:00
{ stdenv, fetchurl, autoreconfHook, pkgconfig, libxkbcommon, pango, which, git
, cairo, libxcb, xcbutil, xcbutilwm, xcbutilxrm, libstartup_notification
2017-10-14 22:08:19 +02:00
, bison, flex, librsvg, check
2015-02-05 01:03:09 +01:00
}:
stdenv.mkDerivation rec {
version = "1.5.1";
name = "rofi-unwrapped-${version}";
2015-02-05 01:03:09 +01:00
2015-06-19 00:10:01 +02:00
src = fetchurl {
url = "https://github.com/DaveDavenport/rofi/releases/download/${version}/rofi-${version}.tar.gz";
sha256 = "1dc33zf33z38jcxb0lxpyd31waalpf6d4cd9z5f9m5qphdk1g679";
2015-02-05 01:03:09 +01:00
};
2018-03-11 18:24:08 +01:00
# config.patch may be removed in the future - https://github.com/DaveDavenport/rofi/pull/781
2018-03-11 19:21:29 +01:00
patches = [ ./config.patch ];
2018-03-11 18:24:08 +01:00
2016-04-24 17:55:20 +02:00
preConfigure = ''
patchShebangs "script"
# root not present in build /etc/passwd
sed -i 's/~root/~nobody/g' test/helper-expand.c
'';
2018-03-11 18:24:08 +01:00
postFixup = ''
substituteInPlace "$out"/bin/rofi-theme-selector \
--replace "%ROFIOUT%" "$out/share"
'';
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2017-10-14 22:08:19 +02:00
buildInputs = [ libxkbcommon pango cairo git bison flex librsvg check
2016-12-31 15:22:22 +01:00
libstartup_notification libxcb xcbutil xcbutilwm xcbutilxrm which
2016-08-13 22:30:07 +02:00
];
2018-03-11 18:24:08 +01:00
doCheck = false;
2015-02-05 01:03:09 +01:00
meta = with stdenv.lib; {
description = "Window switcher, run dialog and dmenu replacement";
homepage = https://davedavenport.github.io/rofi;
license = licenses.mit;
maintainers = with maintainers; [ mbakke garbas ma27 ];
platforms = with platforms; unix;
2015-02-05 01:03:09 +01:00
};
}