summary refs log tree commit diff
path: root/pkgs/development/libraries/libusbmuxd/default.nix
blob: edc3d3df9cb48fb4cfc362816ff0a1b0e31a7e11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl, pkgconfig, libplist }:

stdenv.mkDerivation rec {
  name = "libusbmuxd-1.0.10";
  src = fetchurl {
    url = "http://www.libimobiledevice.org/downloads/${name}.tar.bz2";
    sha256 = "1wn9zq2224786mdr12c5hxad643d29wg4z6b7jn888jx4s8i78hs";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ libplist ];

  meta = {
    homepage = "http://www.libimobiledevice.org";
  };
}