new package: rofi
This commit is contained in:
parent
22d2fc3657
commit
dd29e43add
25
pkgs/applications/misc/rofi/default.nix
Normal file
25
pkgs/applications/misc/rofi/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
, libX11, libXinerama, libXft, pango
|
||||
, i3Support ? false, i3
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.15.1";
|
||||
name = "rofi-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
repo = "rofi";
|
||||
owner = "DaveDavenport";
|
||||
rev = "${version}";
|
||||
sha256 = "11fg85xg7mpw9vldmp163c9y398nvbilwqsl06ms0xbbmpyc2hgz";
|
||||
};
|
||||
|
||||
buildInputs = [ libX11 libXinerama libXft pango autoreconfHook pkgconfig
|
||||
] ++ stdenv.lib.optional i3Support i3;
|
||||
|
||||
meta = {
|
||||
description = "Window switcher, run dialog and dmenu replacement";
|
||||
homepage = https://davedavenport.github.io/rofi;
|
||||
license = stdenv.lib.licenses.mit;
|
||||
};
|
||||
}
|
@ -11298,6 +11298,8 @@ let
|
||||
qt = qt4;
|
||||
});
|
||||
|
||||
rofi = callPackage ../applications/misc/rofi { };
|
||||
|
||||
rsync = callPackage ../applications/networking/sync/rsync {
|
||||
enableACLs = !(stdenv.isDarwin || stdenv.isSunOS || stdenv.isFreeBSD);
|
||||
enableCopyDevicesPatch = (config.rsync.enableCopyDevicesPatch or false);
|
||||
|
Loading…
Reference in New Issue
Block a user