nixpkgs/pkgs/development/libraries/spandsp/default.nix

22 lines
692 B
Nix
Raw Normal View History

2012-09-24 17:02:19 +00:00
{stdenv, fetchurl, audiofile, libtiff}:
stdenv.mkDerivation rec {
2014-09-02 10:15:51 +00:00
version = "0.0.6";
2012-09-24 17:02:19 +00:00
name = "spandsp-${version}";
src=fetchurl {
2014-09-02 10:15:51 +00:00
url = "http://www.soft-switch.org/downloads/spandsp/spandsp-${version}.tar.gz";
sha256 = "0rclrkyspzk575v8fslzjpgp4y2s4x7xk3r55ycvpi4agv33l1fc";
2012-09-24 17:02:19 +00:00
};
buildInputs = [];
propagatedBuildInputs = [audiofile libtiff];
meta = {
homepage = http://www.creytiv.com/baresip.html;
2012-09-24 17:02:19 +00:00
platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [raskin];
license = stdenv.lib.licenses.gpl2;
2014-09-02 10:15:51 +00:00
downloadPage = "http://www.soft-switch.org/downloads/spandsp/";
inherit version;
updateWalker = true;
2012-09-24 17:02:19 +00:00
};
}