nixpkgs/pkgs/development/libraries/dleyna-connector-dbus/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
707 B
Nix
Raw Normal View History

{ stdenv
, lib
, meson
, ninja
, pkg-config
, fetchFromGitHub
, dleyna-core
, glib
}:
2017-08-30 22:23:30 +00:00
stdenv.mkDerivation rec {
2018-05-28 12:59:57 +00:00
pname = "dleyna-connector-dbus";
version = "0.4.1";
2017-08-30 22:23:30 +00:00
src = fetchFromGitHub {
owner = "phako";
2018-05-28 12:59:57 +00:00
repo = pname;
rev = "v${version}";
sha256 = "WDmymia9MD3BRU6BOCzCIMrz9V0ACRzmEGqjbbuUmlA=";
2017-08-30 22:23:30 +00:00
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
dleyna-core
glib
];
2017-08-30 22:23:30 +00:00
meta = with lib; {
2017-08-30 22:23:30 +00:00
description = "A D-Bus API for the dLeyna services";
homepage = "https://github.com/phako/dleyna-connector-dbus";
maintainers = with maintainers; [ jtojnar ];
2022-10-20 01:04:25 +00:00
platforms = platforms.unix;
license = licenses.lgpl21Only;
2017-08-30 22:23:30 +00:00
};
}