tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
rofi: 1.1.0 -> 1.2.0
Marius Bakke
9 years ago
c2013ac1
ab53f39f
+8
-8
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
rofi
default.nix
+8
-8
pkgs/applications/misc/rofi/default.nix
···
1
-
{ stdenv, fetchurl, autoreconfHook, pkgconfig, libX11, libxkbcommon, pango
2
-
, cairo, glib, libxcb, xcbutil, xcbutilwm, libstartup_notification
3
-
, i3Support ? false, i3
4
}:
5
6
stdenv.mkDerivation rec {
7
-
version = "1.1.0";
8
name = "rofi-${version}";
9
10
src = fetchurl {
11
url = "https://github.com/DaveDavenport/rofi/releases/download/${version}/${name}.tar.xz";
12
-
sha256 = "1l8vl0mh7i0b1ycifqpg6392f5i4qxlv003m126skfk6fnlfq8hn";
13
};
14
15
preConfigure = ''
···
18
sed -i 's/~root/~nobody/g' test/helper-expand.c
19
'';
20
21
-
buildInputs = [ autoreconfHook pkgconfig libX11 libxkbcommon pango
22
-
cairo libstartup_notification libxcb xcbutil xcbutilwm
23
-
] ++ stdenv.lib.optional i3Support i3;
0
24
25
meta = with stdenv.lib; {
26
description = "Window switcher, run dialog and dmenu replacement";
···
1
+
{ stdenv, fetchurl, autoreconfHook, pkgconfig, libxkbcommon, pango
2
+
, cairo, glib, libxcb, xcbutil, xcbutilwm, xcbutilxrm, libstartup_notification
0
3
}:
4
5
stdenv.mkDerivation rec {
6
+
version = "1.2.0";
7
name = "rofi-${version}";
8
9
src = fetchurl {
10
url = "https://github.com/DaveDavenport/rofi/releases/download/${version}/${name}.tar.xz";
11
+
sha256 = "0xxx0xpxhrhlhi2axq9867zqrhwqavc1qrr833k1xr0pvm5m0aqc";
12
};
13
14
preConfigure = ''
···
17
sed -i 's/~root/~nobody/g' test/helper-expand.c
18
'';
19
20
+
buildInputs = [ autoreconfHook pkgconfig libxkbcommon pango cairo
21
+
libstartup_notification libxcb xcbutil xcbutilwm xcbutilxrm
22
+
];
23
+
doCheck = true;
24
25
meta = with stdenv.lib; {
26
description = "Window switcher, run dialog and dmenu replacement";