Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / dleyna-core / default.nix
blob2f019977c89d4d39c9d993cb1db484c9f0a59acb
1 { stdenv
2 , lib
3 , fetchFromGitHub
4 , meson
5 , ninja
6 , pkg-config
7 , gupnp
8 }:
10 stdenv.mkDerivation rec {
11   pname = "dleyna-core";
12   version = "0.7.0";
14   outputs = [ "out" "dev" ];
16   setupHook = ./setup-hook.sh;
18   src = fetchFromGitHub {
19     owner = "phako";
20     repo = pname;
21     rev = "v${version}";
22     sha256 = "i4L9+iyAdBNtgImbD54jkjYL5hvzeZ2OaAyFrcFmuG0=";
23   };
25   nativeBuildInputs = [
26     meson
27     ninja
28     pkg-config
29   ];
31   propagatedBuildInputs = [
32     gupnp
33   ];
35   meta = with lib; {
36     description = "Library of utility functions that are used by the higher level dLeyna";
37     homepage = "https://github.com/phako/dleyna-core";
38     maintainers = with maintainers; [ jtojnar ];
39     platforms = platforms.unix;
40     license = licenses.lgpl21Only;
41   };