1 { lib, stdenv, fetchFromGitHub, cmake, pkg-config
5 stdenv.mkDerivation rec {
9 src = fetchFromGitHub {
13 sha256 = "sha256-8lO2c4fkQCaVO8IM05+Rdpo6oMxoEIObBm0y08i+/0k=";
16 nativeBuildInputs = [ cmake pkg-config ];
17 buildInputs = [ mbelib serialdv ];
24 substituteInPlace "$out"/lib/pkgconfig/libdsdcc.pc \
25 --replace '=''${exec_prefix}//' '=/'
29 description = "Digital Speech Decoder (DSD) rewritten as a C++ library";
30 homepage = "https://github.com/f4exb/dsdcc";
31 license = licenses.gpl3;
32 maintainers = with maintainers; [ alexwinter ];
33 platforms = platforms.linux;