summary refs log tree commit diff
path: root/pkgs/development/libraries/ilbc/default.nix
blob: 36b74a1980e0037a505683ed409a444e553e5754 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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}";
  };
}