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:10:07 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2016-10-06 08:02:43 -0300
commite7dc5d2057465794b50a84070bd13fda37d4494f (patch)
treec390251351be2d76fbccf54e8314d1dd0e5ae1be /pkgs/desktops/lxqt
parent5fdc3646e38b5694d1b0954f8e5e97b49187ed26 (diff)
downloadnixlib-e7dc5d2057465794b50a84070bd13fda37d4494f.tar
nixlib-e7dc5d2057465794b50a84070bd13fda37d4494f.tar.gz
nixlib-e7dc5d2057465794b50a84070bd13fda37d4494f.tar.bz2
nixlib-e7dc5d2057465794b50a84070bd13fda37d4494f.tar.lz
nixlib-e7dc5d2057465794b50a84070bd13fda37d4494f.tar.xz
nixlib-e7dc5d2057465794b50a84070bd13fda37d4494f.tar.zst
nixlib-e7dc5d2057465794b50a84070bd13fda37d4494f.zip
lxqt-policykit: init at 0.11.0
Diffstat (limited to 'pkgs/desktops/lxqt')
-rw-r--r--pkgs/desktops/lxqt/core/lxqt-policykit/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/desktops/lxqt/core/lxqt-policykit/default.nix b/pkgs/desktops/lxqt/core/lxqt-policykit/default.nix
new file mode 100644
index 000000000000..627f43f8be60
--- /dev/null
+++ b/pkgs/desktops/lxqt/core/lxqt-policykit/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, kde5, lxqt }:
+
+stdenv.mkDerivation rec {
+  name = "${pname}-${version}";
+  pname = "lxqt-policykit";
+  version = "0.11.0";
+
+  srcs = fetchFromGitHub {
+    owner = "lxde";
+    repo = pname;
+    rev = version;
+    sha256 = "0rbqzh8r259cc44f1cb236p9c3lp195zjdsw3w1nz7j7gzv9yjnd";
+  };
+
+  nativeBuildInputs = [ cmake pkgconfig ];
+
+  buildInputs = [
+    qt5.qtbase
+    qt5.qttools
+    qt5.qtx11extras
+    qt5.qtsvg
+    qt5.polkit-qt
+    kde5.kwindowsystem
+    lxqt.liblxqt
+    lxqt.libqtxdg
+  ];
+
+  cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
+
+  meta = with stdenv.lib; {
+    description = "The LXQt PolicyKit agent";
+    homepage = https://github.com/lxde/lxqt-policykit;
+    license = licenses.lgpl21;
+    maintainers = with maintainers; [ romildo ];
+    platforms = with platforms; unix;
+  };
+}