forked from mirrors/nixpkgs
rofi: 0.15.8 -> 0.15.10
This commit is contained in:
parent
d2287b9faa
commit
c8f4c7575e
|
@ -1,18 +1,19 @@
|
||||||
{ stdenv, fetchurl, autoconf, automake, pkgconfig
|
{ stdenv, fetchurl, autoconf, automake, pkgconfig
|
||||||
, libX11, libXinerama, libXft, pango
|
, libX11, libXinerama, libXft, pango, cairo
|
||||||
, i3Support ? false, i3
|
, libstartup_notification, i3Support ? false, i3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "rofi-${version}";
|
name = "rofi-${version}";
|
||||||
version = "0.15.8";
|
version = "0.15.10";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/DaveDavenport/rofi/archive/${version}.tar.gz";
|
url = "https://github.com/DaveDavenport/rofi/archive/${version}.tar.gz";
|
||||||
sha256 = "1qhj8xrxfnzy16g577w0zxg1cy885rbqydlbbxgfk0dpjvq70lq6";
|
sha256 = "0wwdc9dj8qfmqv4pcllq78h38hqmz9s3hqf71fsk71byiid69ln9";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ autoconf automake pkgconfig libX11 libXinerama libXft pango
|
buildInputs = [ autoconf automake pkgconfig libX11 libXinerama libXft pango
|
||||||
|
cairo libstartup_notification
|
||||||
] ++ stdenv.lib.optional i3Support i3;
|
] ++ stdenv.lib.optional i3Support i3;
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
|
Loading…
Reference in a new issue