lol
at v206 24 lines 778 B view raw
1{ stdenv, fetchurl, cmake, automoc4, kdelibs, libbluedevil, shared_mime_info, gettext }: 2 3stdenv.mkDerivation rec { 4 name = "${pname}-${version}"; 5 pname = "bluedevil"; 6 # bluedevil must have the same major version (x.y) as libbluedevil! 7 # do not update this package without checking libbluedevil 8 version = "2.1.1"; 9 10 src = fetchurl { 11 url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz"; 12 sha256 = "1rcx1dfm6sm90pvwyq224a1pph96chrmyiv1rry7zpb3hf2c73gi"; 13 }; 14 15 buildInputs = [ cmake kdelibs libbluedevil shared_mime_info automoc4 gettext ]; 16 17 meta = with stdenv.lib; { 18 description = "Bluetooth manager for KDE"; 19 license = stdenv.lib.licenses.gpl2; 20 inherit (kdelibs.meta) platforms; 21 maintainers = [ maintainers.phreedom ]; 22 }; 23 24}