Implement required changes

This commit is contained in:
kiloreux 2017-08-08 09:43:23 +01:00
parent 21b6e9cc05
commit 6f7f06375c
No known key found for this signature in database
GPG Key ID: 8B81EA3FA91EB758
1 changed files with 7 additions and 3 deletions

View File

@ -1,11 +1,15 @@
{stdenv, fetchurl}:
{ stdenv, fetchurl };
let
version = "0.1.5";
in
stdenv.mkDerivation {
name = "opencore-amr";
name = "opencore-amr-${version}";
src = fetchurl {
url = https://vorboss.dl.sourceforge.net/project/opencore-amr/opencore-amr/opencore-amr-0.1.5.tar.gz;
url = "https://vorboss.dl.sourceforge.net/project/opencore-amr/opencore-amr/opencore-amr-${version}.tar.gz";
sha256 = "0hfk9khz3by0119h3jdwgdfd7jgkdbzxnmh1wssvylgnsnwnq01c";
};
meta = {
homepage = https://opencore-amr.sourceforge.io/;
description = "Library of OpenCORE Framework implementation of Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec.