nixpkgs/pkgs/tools/bluetooth/bluedevil/default.nix

23 lines
648 B
Nix
Raw Normal View History

2013-05-10 05:38:16 +04:00
{ stdenv, fetchurl, cmake, automoc4, kdelibs, libbluedevil, shared_mime_info, gettext }:
stdenv.mkDerivation rec {
2013-05-10 05:38:16 +04:00
name = "${pname}-${version}";
pname = "bluedevil";
version = "1.3.1";
2013-05-10 05:38:16 +04:00
src = fetchurl {
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.bz2";
sha256 = "0di3hwgqzhx51x172wnbccf9f84cg69mab83qkcif0v3gv3pzy4f";
};
2013-05-10 05:38:16 +04:00
buildInputs = [ cmake kdelibs libbluedevil shared_mime_info automoc4 gettext ];
2013-05-07 10:36:46 +04:00
meta = with stdenv.lib; {
description = "Bluetooth manager for KDE";
license = stdenv.lib.licenses.gpl2;
2013-05-07 10:36:46 +04:00
inherit (kdelibs.meta) platforms;
maintainers = [ maintainers.phreedom ];
};
}