summary refs log tree commit diff
path: root/pkgs/tools/bluetooth/bluedevil/default.nix
blob: 287036f3e0a8fc554dd2bf0f19522f820fb244c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ stdenv, fetchgit, cmake, automoc4, kdelibs, libbluedevil, shared_mime_info }:

stdenv.mkDerivation rec {
  name = "bluedevil-20110303";

  src = fetchgit {
    url = git://anongit.kde.org/bluedevil.git;
    sha256 = "1chx3cx43wic1sgzc651vxxiy9khbp9hcm7n40nmhnj9czfcg46q";
    rev = "7e513008aa6430d3b8d0052b14201d1d813c80b9";
  };

  buildInputs = [ cmake kdelibs libbluedevil shared_mime_info automoc4 ];

}