11 stdenv.mkDerivation rec {
12 pname = "dleyna-core";
20 setupHook = ./setup-hook.sh;
22 src = fetchFromGitHub {
26 sha256 = "i4L9+iyAdBNtgImbD54jkjYL5hvzeZ2OaAyFrcFmuG0=";
35 propagatedBuildInputs = [
39 env.NIX_CFLAGS_COMPILE = toString (
40 lib.optionals stdenv.cc.isClang [
41 "-Wno-error=implicit-function-declaration"
42 "-Wno-error=int-conversion"
47 description = "Library of utility functions that are used by the higher level dLeyna";
48 homepage = "https://github.com/phako/dleyna-core";
49 maintainers = with maintainers; [ jtojnar ];
50 platforms = platforms.unix;
51 license = licenses.lgpl21Only;