tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Updating amrnb to the latest version.
Lluís Batlle i Rossell
12 years ago
370dec91
bf48a6f3
+6
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
amrnb
default.nix
+6
-6
pkgs/development/libraries/amrnb/default.nix
···
1
{stdenv, fetchurl, unzip}:
2
3
stdenv.mkDerivation {
4
-
name = "amrnb-7.0.0.2";
5
srcAmr = fetchurl {
6
-
url = http://www.3gpp.org/ftp/Specs/latest/Rel-7/26_series/26104-700.zip;
7
-
sha256 = "0hgm8dddrqiinjdjxnsw0x899czjlvplq69z4kv8y4zqnrjlwzni";
8
};
9
10
src = fetchurl {
11
-
url = http://ftp.penguin.cz/pub/users/utx/amr/amrnb-7.0.0.2.tar.bz2;
12
-
sha256 = "0z4wjr0jml973vd0dvxlmy34daiswy5axlmpvc85k8qcr08i8zaa";
13
};
14
15
buildInputs = [ unzip ];
···
17
configureFlags = [ "--cache-file=config.cache" "--with-downloader=true" ];
18
19
postConfigure = ''
20
-
cp $srcAmr 26104-700.zip
21
'';
22
23
meta = {
···
1
{stdenv, fetchurl, unzip}:
2
3
stdenv.mkDerivation {
4
+
name = "amrnb-11.0.0.0";
5
srcAmr = fetchurl {
6
+
url = http://www.3gpp.org/ftp/Specs/latest/Rel-11/26_series/26104-b00.zip;
7
+
sha256 = "1wf8ih0hk7w20vdlnw7jb7w73v15hbxgbvmq4wq7h2ghn0j8ppr3";
8
};
9
10
src = fetchurl {
11
+
url = http://ftp.penguin.cz/pub/users/utx/amr/amrnb-11.0.0.0.tar.bz2;
12
+
sha256 = "1qgiw02n2a6r32pimnd97v2jkvnw449xrqmaxiivjy2jcr5h141q";
13
};
14
15
buildInputs = [ unzip ];
···
17
configureFlags = [ "--cache-file=config.cache" "--with-downloader=true" ];
18
19
postConfigure = ''
20
+
cp $srcAmr 26104-b00.zip
21
'';
22
23
meta = {