From b45be4081861389cd000e142b5658ff22e76ccc5 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Thu, 14 Dec 2017 07:33:41 -0500 Subject: [PATCH] airspy: fixup meta --- pkgs/applications/misc/airspy/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/misc/airspy/default.nix b/pkgs/applications/misc/airspy/default.nix index b73cc09eaec..d00cd366537 100644 --- a/pkgs/applications/misc/airspy/default.nix +++ b/pkgs/applications/misc/airspy/default.nix @@ -4,7 +4,7 @@ let version = "1.0.9"; -in +in stdenv.mkDerivation { name = "airspy-${version}"; @@ -17,15 +17,14 @@ in nativeBuildInputs = [ cmake pkgconfig ]; buildInputs = [ libusb ]; - + cmakeFlags = [ "-DINSTALL_UDEV_RULES=OFF" ]; - + meta = with stdenv.lib; { homepage = http://github.com/airspy/airspyone_host; description = "Host tools and driver library for the AirSpy SDR"; license = licenses.free; platforms = platforms.linux; - maintainer = with maintainers; [ markuskowa ]; + maintainers = with maintainers; [ markuskowa ]; }; } -