mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
22 lines
692 B
Nix
22 lines
692 B
Nix
{stdenv, fetchurl, audiofile, libtiff}:
|
|
stdenv.mkDerivation rec {
|
|
version = "0.0.6";
|
|
name = "spandsp-${version}";
|
|
src=fetchurl {
|
|
url = "http://www.soft-switch.org/downloads/spandsp/spandsp-${version}.tar.gz";
|
|
sha256 = "0rclrkyspzk575v8fslzjpgp4y2s4x7xk3r55ycvpi4agv33l1fc";
|
|
};
|
|
buildInputs = [];
|
|
propagatedBuildInputs = [audiofile libtiff];
|
|
meta = {
|
|
homepage = http://www.creytiv.com/baresip.html;
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
maintainers = with stdenv.lib.maintainers; [raskin];
|
|
license = stdenv.lib.licenses.gpl2;
|
|
downloadPage = "http://www.soft-switch.org/downloads/spandsp/";
|
|
inherit version;
|
|
updateWalker = true;
|
|
};
|
|
}
|
|
|