From 1439ed21349f4b001fd31640b64be178bb46e120 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sat, 25 Apr 2015 15:30:42 -0700 Subject: [PATCH] sbc: 1.1 -> 1.3 --- pkgs/development/libraries/sbc/default.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/sbc/default.nix b/pkgs/development/libraries/sbc/default.nix index 06411c1f22a..4c4023cf57f 100644 --- a/pkgs/development/libraries/sbc/default.nix +++ b/pkgs/development/libraries/sbc/default.nix @@ -1,20 +1,21 @@ -{ stdenv, fetchurl, libsndfile, pkgconfig }: +{ stdenv, fetchurl, pkgconfig, libsndfile }: stdenv.mkDerivation rec { - name = "sbc-1.1"; + name = "sbc-1.3"; src = fetchurl { url = "http://www.kernel.org/pub/linux/bluetooth/${name}.tar.xz"; - sha256 = "1ipvkhilyhdbd2nzq0la6l7q361l0zm0c6kvga2a0y89q8nssc4s"; + sha256 = "02ckd2z51z0h85qgv7x8vv8ybp5czm9if1z78411j53gaz7j4476"; }; - buildInputs = [ pkgconfig libsndfile ]; + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ libsndfile ]; - meta = { + meta = with stdenv.lib; { description = "SubBand Codec Library"; - homepage = http://www.bluez.org/; - - license = stdenv.lib.licenses.gpl2; + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = with maintainers; [ wkennington ]; }; }