commit
63caf0538c
29
pkgs/applications/misc/rofi/default.nix
Normal file
29
pkgs/applications/misc/rofi/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, autoconf, automake, pkgconfig
|
||||||
|
, libX11, libXinerama, libXft, pango
|
||||||
|
, i3Support ? false, i3
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "rofi-${version}";
|
||||||
|
version = "0.15.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
repo = "rofi";
|
||||||
|
owner = "DaveDavenport";
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "0b8k5g2fpqrz1yac09kmfk4caxcc107qq4yhncnl159xdxw66vz8";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ autoconf automake pkgconfig libX11 libXinerama libXft pango
|
||||||
|
] ++ stdenv.lib.optional i3Support i3;
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
autoreconf -vif
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Window switcher, run dialog and dmenu replacement";
|
||||||
|
homepage = https://davedavenport.github.io/rofi;
|
||||||
|
license = stdenv.lib.licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
@ -11300,6 +11300,10 @@ let
|
|||||||
qt = qt4;
|
qt = qt4;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
rofi = callPackage ../applications/misc/rofi {
|
||||||
|
automake = automake114x;
|
||||||
|
};
|
||||||
|
|
||||||
rsync = callPackage ../applications/networking/sync/rsync {
|
rsync = callPackage ../applications/networking/sync/rsync {
|
||||||
enableACLs = !(stdenv.isDarwin || stdenv.isSunOS || stdenv.isFreeBSD);
|
enableACLs = !(stdenv.isDarwin || stdenv.isSunOS || stdenv.isFreeBSD);
|
||||||
enableCopyDevicesPatch = (config.rsync.enableCopyDevicesPatch or false);
|
enableCopyDevicesPatch = (config.rsync.enableCopyDevicesPatch or false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user