nixpkgs/pkgs/applications/misc/rofi/default.nix

29 lines
786 B
Nix
Raw Normal View History

2015-06-19 00:10:01 +02:00
{ stdenv, fetchurl, autoconf, automake, pkgconfig
2015-02-05 01:03:09 +01:00
, libX11, libXinerama, libXft, pango
, i3Support ? false, i3
}:
stdenv.mkDerivation rec {
name = "rofi-${version}";
2015-09-22 01:57:35 +02:00
version = "0.15.8";
2015-02-05 01:03:09 +01:00
2015-06-19 00:10:01 +02:00
src = fetchurl {
url = "https://github.com/DaveDavenport/rofi/archive/${version}.tar.gz";
2015-09-22 01:57:35 +02:00
sha256 = "1qhj8xrxfnzy16g577w0zxg1cy885rbqydlbbxgfk0dpjvq70lq6";
2015-02-05 01:03:09 +01:00
};
buildInputs = [ autoconf automake pkgconfig libX11 libXinerama libXft pango
2015-02-05 01:03:09 +01:00
] ++ stdenv.lib.optional i3Support i3;
preConfigure = ''
autoreconf -vif
'';
2015-02-05 01:03:09 +01:00
meta = {
description = "Window switcher, run dialog and dmenu replacement";
homepage = https://davedavenport.github.io/rofi;
license = stdenv.lib.licenses.mit;
2015-06-19 00:10:01 +02:00
maintainers = [ stdenv.lib.maintainers.mbakke ];
2015-02-05 01:03:09 +01:00
};
}