summary refs log tree commit diff
path: root/pkgs/applications/kde/libkdegames.nix
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2018-05-18 13:45:20 +0100
committerLinus Heckemann <git@sphalerite.org>2018-05-18 13:51:28 +0100
commit60216b2f3961be9086c018b52f45f41d866df982 (patch)
treee4718cd4e538e38f0ad0820de00ae77aeb689c92 /pkgs/applications/kde/libkdegames.nix
parent31712afa7b08a46c8e393a1b63c9fbae576762e6 (diff)
downloadnixpkgs-60216b2f3961be9086c018b52f45f41d866df982.tar
nixpkgs-60216b2f3961be9086c018b52f45f41d866df982.tar.gz
nixpkgs-60216b2f3961be9086c018b52f45f41d866df982.tar.bz2
nixpkgs-60216b2f3961be9086c018b52f45f41d866df982.tar.lz
nixpkgs-60216b2f3961be9086c018b52f45f41d866df982.tar.xz
nixpkgs-60216b2f3961be9086c018b52f45f41d866df982.tar.zst
nixpkgs-60216b2f3961be9086c018b52f45f41d866df982.zip
libsForQt5.libkdegames: init at 18.04.1
Diffstat (limited to 'pkgs/applications/kde/libkdegames.nix')
-rw-r--r--pkgs/applications/kde/libkdegames.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/applications/kde/libkdegames.nix b/pkgs/applications/kde/libkdegames.nix
new file mode 100644
index 00000000000..494b193b832
--- /dev/null
+++ b/pkgs/applications/kde/libkdegames.nix
@@ -0,0 +1,26 @@
+{ lib
+, mkDerivation
+, extra-cmake-modules
+, kdoctools
+, kdelibs4support
+, qtdeclarative
+, kdeclarative
+, kdnssd
+, knewstuff
+, openal
+, libsndfile
+, qtquickcontrols
+}:
+
+mkDerivation {
+  name = "libkdegames";
+  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+  buildInputs = [
+    kdelibs4support qtdeclarative kdeclarative kdnssd knewstuff openal libsndfile
+    qtquickcontrols
+  ];
+  meta = {
+    license = with lib.licenses; [ gpl2 ];
+    maintainers = with lib.maintainers; [ lheckemann ];
+  };
+}