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

24 lines
781 B
Nix
Raw Normal View History

2012-09-24 18:02:19 +01:00
{stdenv, fetchurl, audiofile, libtiff}:
stdenv.mkDerivation rec {
2014-09-02 11:15:51 +01:00
version = "0.0.6";
pname = "spandsp";
2012-09-24 18:02:19 +01:00
src=fetchurl {
url = "https://www.soft-switch.org/downloads/spandsp/spandsp-${version}.tar.gz";
2014-09-02 11:15:51 +01:00
sha256 = "0rclrkyspzk575v8fslzjpgp4y2s4x7xk3r55ycvpi4agv33l1fc";
2012-09-24 18:02:19 +01:00
};
2019-09-29 10:05:22 +01:00
outputs = [ "out" "dev" ];
2019-09-29 10:05:22 +01:00
2012-09-24 18:02:19 +01:00
propagatedBuildInputs = [audiofile libtiff];
meta = {
description = "A portable and modular SIP User-Agent with audio and video support";
homepage = http://www.creytiv.com/baresip.html;
2012-09-24 18:02:19 +01:00
platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [raskin];
license = stdenv.lib.licenses.gpl2;
2014-09-02 11:15:51 +01:00
downloadPage = "http://www.soft-switch.org/downloads/spandsp/";
inherit version;
updateWalker = true;
2012-09-24 18:02:19 +01:00
};
}