at 18.03-beta 20 lines 526 B view raw
1{ stdenv, fetchurl, cmake, qt4 }: 2 3stdenv.mkDerivation rec { 4 name = "${pname}-${version}"; 5 pname = "libbluedevil"; 6 # bluedevil must have the same major version (x.y) as libbluedevil! 7 # do not update this package without checking bluedevil 8 version = "2.1"; 9 10 src = fetchurl { 11 url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz"; 12 sha256 = "0p4f0brhcz9gfxfd6114fa5x6swfdmgzv350xwncdr0s1qnamk8c"; 13 }; 14 15 buildInputs = [ cmake qt4 ]; 16 17 meta = { 18 platforms = stdenv.lib.platforms.unix; 19 }; 20}