Rofi: update to 0.15.2
requires >=automake-1.14
This commit is contained in:
parent
dd29e43add
commit
fe1243cc8e
@ -1,22 +1,26 @@
|
|||||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
{ stdenv, fetchFromGitHub, autoconf, automake, pkgconfig
|
||||||
, libX11, libXinerama, libXft, pango
|
, libX11, libXinerama, libXft, pango
|
||||||
, i3Support ? false, i3
|
, i3Support ? false, i3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.15.1";
|
|
||||||
name = "rofi-${version}";
|
name = "rofi-${version}";
|
||||||
|
version = "0.15.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
repo = "rofi";
|
repo = "rofi";
|
||||||
owner = "DaveDavenport";
|
owner = "DaveDavenport";
|
||||||
rev = "${version}";
|
rev = "${version}";
|
||||||
sha256 = "11fg85xg7mpw9vldmp163c9y398nvbilwqsl06ms0xbbmpyc2hgz";
|
sha256 = "0b8k5g2fpqrz1yac09kmfk4caxcc107qq4yhncnl159xdxw66vz8";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libX11 libXinerama libXft pango autoreconfHook pkgconfig
|
buildInputs = [ autoconf automake pkgconfig libX11 libXinerama libXft pango
|
||||||
] ++ stdenv.lib.optional i3Support i3;
|
] ++ stdenv.lib.optional i3Support i3;
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
autoreconf -vif
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Window switcher, run dialog and dmenu replacement";
|
description = "Window switcher, run dialog and dmenu replacement";
|
||||||
homepage = https://davedavenport.github.io/rofi;
|
homepage = https://davedavenport.github.io/rofi;
|
||||||
|
@ -11298,7 +11298,9 @@ let
|
|||||||
qt = qt4;
|
qt = qt4;
|
||||||
});
|
});
|
||||||
|
|
||||||
rofi = callPackage ../applications/misc/rofi { };
|
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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user