summary refs log tree commit diff
path: root/pkgs/development/libraries/opencore-amr
diff options
context:
space:
mode:
authorkiloreux <kiloreux@gmail.com>2017-08-08 17:36:15 +0100
committerkiloreux <kiloreux@gmail.com>2017-08-08 17:36:15 +0100
commitc74d0d460f3070de23fd55fc81822d23bc0bd686 (patch)
tree548284e82c1e820ee5a4b7095b6fa6197662d4dc /pkgs/development/libraries/opencore-amr
parent66e5a9f43f65aa2685edc5e0d932ae14c6d52686 (diff)
downloadnixpkgs-c74d0d460f3070de23fd55fc81822d23bc0bd686.tar
nixpkgs-c74d0d460f3070de23fd55fc81822d23bc0bd686.tar.gz
nixpkgs-c74d0d460f3070de23fd55fc81822d23bc0bd686.tar.bz2
nixpkgs-c74d0d460f3070de23fd55fc81822d23bc0bd686.tar.lz
nixpkgs-c74d0d460f3070de23fd55fc81822d23bc0bd686.tar.xz
nixpkgs-c74d0d460f3070de23fd55fc81822d23bc0bd686.tar.zst
nixpkgs-c74d0d460f3070de23fd55fc81822d23bc0bd686.zip
Implement other required changes
Diffstat (limited to 'pkgs/development/libraries/opencore-amr')
-rw-r--r--pkgs/development/libraries/opencore-amr/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/opencore-amr/default.nix b/pkgs/development/libraries/opencore-amr/default.nix
new file mode 100644
index 00000000000..9a8787ad7f4
--- /dev/null
+++ b/pkgs/development/libraries/opencore-amr/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl }:
+
+let
+    version = "0.1.5";
+in 
+stdenv.mkDerivation {
+  name = "opencore-amr-${version}";
+  src = fetchurl {
+    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. 
+    Library of VisualOn implementation of Adaptive Multi Rate Wideband (AMR-WB)";
+    license = stdenv.lib.licenses.asl20;
+    maintainers = [ stdenv.lib.maintainers.kiloreux ];
+  };
+}