mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
25 lines
659 B
Nix
25 lines
659 B
Nix
{ stdenv, autoreconfHook, pkgconfig, fetchFromGitHub, dbus, dleyna-core, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dleyna-connector-dbus";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "01org";
|
|
repo = name;
|
|
rev = "${version}";
|
|
sha256 = "0vziq5gwjm79yl2swch2mz6ias20nvfddf5cqgk9zbg25cb9m117";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ dbus dleyna-core glib ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A D-Bus API for the dLeyna services";
|
|
homepage = http://01.org/dleyna;
|
|
maintainers = [ maintainers.jtojnar ];
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl21;
|
|
};
|
|
}
|