summary refs log tree commit diff
path: root/pkgs/development/libraries/amrnb
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-11-24 14:57:28 +0100
committerLluís Batlle i Rossell <viric@viric.name>2013-11-24 14:57:55 +0100
commit370dec91cc9cbfc728a8924f4d9ce231050e53e8 (patch)
treea33a08eda8f6191e6847f16cdf5e35452b173dd3 /pkgs/development/libraries/amrnb
parentbf48a6f3d6ac6bf570311520dbf52bd3102772c6 (diff)
downloadnixpkgs-370dec91cc9cbfc728a8924f4d9ce231050e53e8.tar
nixpkgs-370dec91cc9cbfc728a8924f4d9ce231050e53e8.tar.gz
nixpkgs-370dec91cc9cbfc728a8924f4d9ce231050e53e8.tar.bz2
nixpkgs-370dec91cc9cbfc728a8924f4d9ce231050e53e8.tar.lz
nixpkgs-370dec91cc9cbfc728a8924f4d9ce231050e53e8.tar.xz
nixpkgs-370dec91cc9cbfc728a8924f4d9ce231050e53e8.tar.zst
nixpkgs-370dec91cc9cbfc728a8924f4d9ce231050e53e8.zip
Updating amrnb to the latest version.
Diffstat (limited to 'pkgs/development/libraries/amrnb')
-rw-r--r--pkgs/development/libraries/amrnb/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/libraries/amrnb/default.nix b/pkgs/development/libraries/amrnb/default.nix
index a2ed7393493..7790f8e124b 100644
--- a/pkgs/development/libraries/amrnb/default.nix
+++ b/pkgs/development/libraries/amrnb/default.nix
@@ -1,15 +1,15 @@
 {stdenv, fetchurl, unzip}:
 
 stdenv.mkDerivation {
-  name = "amrnb-7.0.0.2";
+  name = "amrnb-11.0.0.0";
   srcAmr = fetchurl {
-    url = http://www.3gpp.org/ftp/Specs/latest/Rel-7/26_series/26104-700.zip;
-    sha256 = "0hgm8dddrqiinjdjxnsw0x899czjlvplq69z4kv8y4zqnrjlwzni";
+    url = http://www.3gpp.org/ftp/Specs/latest/Rel-11/26_series/26104-b00.zip;
+    sha256 = "1wf8ih0hk7w20vdlnw7jb7w73v15hbxgbvmq4wq7h2ghn0j8ppr3";
   };
 
   src = fetchurl {
-    url = http://ftp.penguin.cz/pub/users/utx/amr/amrnb-7.0.0.2.tar.bz2;
-    sha256 = "0z4wjr0jml973vd0dvxlmy34daiswy5axlmpvc85k8qcr08i8zaa";
+    url = http://ftp.penguin.cz/pub/users/utx/amr/amrnb-11.0.0.0.tar.bz2;
+    sha256 = "1qgiw02n2a6r32pimnd97v2jkvnw449xrqmaxiivjy2jcr5h141q";
   };
 
   buildInputs = [ unzip ];
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
   configureFlags = [ "--cache-file=config.cache" "--with-downloader=true" ];
 
   postConfigure = ''
-    cp $srcAmr 26104-700.zip 
+    cp $srcAmr 26104-b00.zip 
   '';
 
   meta = {