mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
KBluetooth: packaged
svn path=/nixpkgs/trunk/; revision=23889
This commit is contained in:
parent
748fa38a35
commit
7a607648dc
30
pkgs/tools/bluetooth/kbluetooth/default.nix
Normal file
30
pkgs/tools/bluetooth/kbluetooth/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ stdenv, fetchurl, kdelibs, cmake, qt4, automoc4, phonon, kdebase_workspace, soprano, gettext
|
||||
, semanticDesktop ? true }:
|
||||
with stdenv;
|
||||
mkDerivation rec {
|
||||
name = "kbluetooth-${version}";
|
||||
version = "0.4.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://kde-apps.org/CONTENT/content-files/112110-${name}.tar.bz2";
|
||||
sha256 = "0z5clp677g1vgh3dd09ilq1r481y342q2cx5pzjj51y1d9lb5zp5";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
buildInputs = [ cmake qt4 kdelibs automoc4 phonon kdebase_workspace soprano gettext]
|
||||
++ lib.optional semanticDesktop soprano;
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace src/CMakeLists.txt --replace "DESTINATION \''${KDE4_BIN_INSTALL_DIR}" "DESTINATION bin"
|
||||
substituteInPlace src/inputwizard/CMakeLists.txt --replace "DESTINATION \''${KDE4_BIN_INSTALL_DIR}" "DESTINATION bin"
|
||||
substituteInPlace src/device-manager/CMakeLists.txt --replace "DESTINATION \''${KDE4_BIN_INSTALL_DIR}" "DESTINATION bin"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Bluetooth manager for KDE";
|
||||
license = "GPLv2";
|
||||
inherit (kdelibs.meta) platforms;
|
||||
maintainers = [ maintainers.phreedom ];
|
||||
};
|
||||
}
|
@ -5749,6 +5749,8 @@ let
|
||||
|
||||
jwm = callPackage ../applications/window-managers/jwm { };
|
||||
|
||||
kbluetooth = newScope pkgs.kde4 ../tools/bluetooth/kbluetooth { };
|
||||
|
||||
kermit = callPackage ../tools/misc/kermit { };
|
||||
|
||||
kino = import ../applications/video/kino {
|
||||
|
Loading…
Reference in New Issue
Block a user