summary refs log tree commit diff
path: root/pkgs/desktops/lxqt
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2016-10-03 19:05:01 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2016-10-06 08:02:42 -0300
commitcb8908d8074dbc6023fcc52b1df92719df7330d1 (patch)
treef33a2673f8707b2a8240ea23e8e78643a201424b /pkgs/desktops/lxqt
parenta5f681eca733339335589c1a8f905119f3917643 (diff)
downloadnixpkgs-cb8908d8074dbc6023fcc52b1df92719df7330d1.tar
nixpkgs-cb8908d8074dbc6023fcc52b1df92719df7330d1.tar.gz
nixpkgs-cb8908d8074dbc6023fcc52b1df92719df7330d1.tar.bz2
nixpkgs-cb8908d8074dbc6023fcc52b1df92719df7330d1.tar.lz
nixpkgs-cb8908d8074dbc6023fcc52b1df92719df7330d1.tar.xz
nixpkgs-cb8908d8074dbc6023fcc52b1df92719df7330d1.tar.zst
nixpkgs-cb8908d8074dbc6023fcc52b1df92719df7330d1.zip
lxqt-runner: init at 0.11.0
Diffstat (limited to 'pkgs/desktops/lxqt')
-rw-r--r--pkgs/desktops/lxqt/core/lxqt-runner/default.nix39
-rw-r--r--pkgs/desktops/lxqt/default.nix1
2 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/desktops/lxqt/core/lxqt-runner/default.nix b/pkgs/desktops/lxqt/core/lxqt-runner/default.nix
new file mode 100644
index 00000000000..02d6f90397a
--- /dev/null
+++ b/pkgs/desktops/lxqt/core/lxqt-runner/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, kde5, lxqt,
+menu-cache, muparser }:
+
+stdenv.mkDerivation rec {
+  name = "${pname}-${version}";
+  pname = "lxqt-runner";
+  version = "0.11.0";
+
+  srcs = fetchFromGitHub {
+    owner = "lxde";
+    repo = pname;
+    rev = version;
+    sha256 = "1gqs1b90km39dbg49g80x770i9jknni4h8y6ka2r1fga35amllkc";
+  };
+
+  nativeBuildInputs = [ cmake pkgconfig ];
+
+  buildInputs = [
+    qt5.qtbase
+    qt5.qttools
+    qt5.qtsvg
+    kde5.kwindowsystem
+    lxqt.liblxqt
+    lxqt.libqtxdg
+    lxqt.lxqt-globalkeys
+    menu-cache
+    muparser
+  ];
+
+  cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
+
+  meta = with stdenv.lib; {
+    description = "Tool used to launch programs quickly by typing their names";
+    homepage = https://github.com/lxde/lxqt-runner;
+    license = licenses.lgpl21;
+    maintainers = with maintainers; [ romildo ];
+    platforms = with platforms; unix;
+  };
+}
diff --git a/pkgs/desktops/lxqt/default.nix b/pkgs/desktops/lxqt/default.nix
index 47a21877a9d..1b20d2b1746 100644
--- a/pkgs/desktops/lxqt/default.nix
+++ b/pkgs/desktops/lxqt/default.nix
@@ -51,5 +51,6 @@ let
 
     ### CORE 2
     lxqt-panel = callPackage ./core/lxqt-panel { };
+    lxqt-runner = callPackage ./core/lxqt-runner { };
 
 in self