e12b421add
merge cleanly right away (kde-4, kernel stuff) so it should be merged later. But the stdenv stuff is all there. svn path=/nixpkgs/branches/stdenv-updates-merge/; revision=10793
11 lines
263 B
Nix
11 lines
263 B
Nix
args: with args;
|
|
stdenv.mkDerivation rec {
|
|
name = "libjingle-" + version;
|
|
src = fetchurl {
|
|
url = "mirror://sf/tapioca-voip/${name}.tar.gz";
|
|
sha256 = "1x5l2jwxpkyxvnq0cagq40p6x61v23vxngnnsxr15lyh1zwzk1yj";
|
|
};
|
|
|
|
propagatedBuildInputs = [ mediastreamer ];
|
|
}
|