ilbc and msilbc libraries added
svn path=/nixpkgs/branches/stdenv-updates/; revision=10570
This commit is contained in:
17
pkgs/development/libraries/ilbc/default.nix
Normal file
17
pkgs/development/libraries/ilbc/default.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name = "ilbc-rfc3951";
|
||||
|
||||
# I'm too lazy to extract .c source from rfc3951. So, I'm using autotools stuff
|
||||
# from linphone project
|
||||
src = stdenv.mkDerivation {
|
||||
name = "ilbc-rfc3951.tar.gz";
|
||||
src = msilbc.src;
|
||||
outputHashAlgo = "sha256";
|
||||
outputHash = "0f6scsp72bz2ifscd8c0x57ipcxi2i4a9b4nwlnwx7a7a0hrazhj";
|
||||
phases = "unpackPhase installPhase";
|
||||
installPhase = "cp ilbc-rfc3951.tar.gz \${out}";
|
||||
};
|
||||
|
||||
configureFlags = "--enable-shared --disable-static";
|
||||
}
|
||||
Reference in New Issue
Block a user