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

25 lines
778 B
Nix
Raw Normal View History

2013-05-10 02:38:16 +01:00
{ stdenv, fetchurl, cmake, automoc4, kdelibs, libbluedevil, shared_mime_info, gettext }:
stdenv.mkDerivation rec {
2013-05-10 02:38:16 +01:00
name = "${pname}-${version}";
pname = "bluedevil";
# bluedevil must have the same major version (x.y) as libbluedevil!
# do not update this package without checking libbluedevil
2015-03-26 21:38:42 +00:00
version = "2.1.1";
2013-05-10 02:38:16 +01:00
src = fetchurl {
2015-03-26 21:38:42 +00:00
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
sha256 = "1rcx1dfm6sm90pvwyq224a1pph96chrmyiv1rry7zpb3hf2c73gi";
};
2013-05-10 02:38:16 +01:00
buildInputs = [ cmake kdelibs libbluedevil shared_mime_info automoc4 gettext ];
2013-05-07 07:36:46 +01:00
meta = with stdenv.lib; {
description = "Bluetooth manager for KDE";
license = stdenv.lib.licenses.gpl2;
2013-05-07 07:36:46 +01:00
inherit (kdelibs.meta) platforms;
maintainers = [ maintainers.phreedom ];
};
}