Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 20 lines 550 B view raw
1{ stdenv, fetchurl, cmake, qt4 }: 2 3stdenv.mkDerivation rec { 4 pname = "libbluedevil"; 5 # bluedevil must have the same major version (x.y) as libbluedevil! 6 # do not update this package without checking bluedevil 7 version = "2.1"; 8 9 src = fetchurl { 10 url = "mirror://kde/stable/${pname}/${version}/src/${pname}-${version}.tar.xz"; 11 sha256 = "0p4f0brhcz9gfxfd6114fa5x6swfdmgzv350xwncdr0s1qnamk8c"; 12 }; 13 14 buildInputs = [ cmake qt4 ]; 15 16 meta = { 17 platforms = stdenv.lib.platforms.unix; 18 license = stdenv.lib.licenses.gpl2Plus; 19 }; 20}