3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/audio/libbs2b/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* 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
2017-08-01 22:03:30 +02:00

23 lines
562 B
Nix

{ stdenv, fetchurl, pkgconfig, libsndfile }:
stdenv.mkDerivation rec {
name = "libbs2b-${version}";
version = "3.1.0";
src = fetchurl {
url = "mirror://sourceforge/bs2b/${name}.tar.bz2";
sha256 = "0vz442kkjn2h0dlxppzi4m5zx8qfyrivq581n06xzvnyxi5rg6a7";
};
buildInputs = [ pkgconfig libsndfile ];
hardeningDisable = [ "format" ];
meta = {
homepage = http://bs2b.sourceforge.net/;
description = "Bauer stereophonic-to-binaural DSP library";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
};
}