Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 23 lines 615 B view raw
1{ lib, stdenv, fetchFromGitHub, cmake }: 2 3stdenv.mkDerivation rec { 4 pname = "codec2"; 5 version = "0.9.2"; 6 7 src = fetchFromGitHub { 8 owner = "drowe67"; 9 repo = "codec2"; 10 rev = "v${version}"; 11 sha256 = "1jpvr7bra8srz8jvnlbmhf8andbaavq5v01qjnp2f61za93rzwba"; 12 }; 13 14 nativeBuildInputs = [ cmake ]; 15 16 meta = with lib; { 17 description = "Speech codec designed for communications quality speech at low data rates"; 18 homepage = "http://www.rowetel.com/blog/?page_id=452"; 19 license = licenses.lgpl21Only; 20 platforms = platforms.unix; 21 maintainers = with maintainers; [ markuskowa ]; 22 }; 23}