summary refs log tree commit diff
path: root/pkgs/applications/misc/airspy
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2017-12-14 07:33:41 -0500
committerGraham Christensen <graham@grahamc.com>2017-12-14 07:33:41 -0500
commitb45be4081861389cd000e142b5658ff22e76ccc5 (patch)
treee695098ce8b842e111cebb4aa42cfc6f54ded049 /pkgs/applications/misc/airspy
parentb2973d5ad441388b0f8454ed6ac5479bf9ee3519 (diff)
downloadnixpkgs-b45be4081861389cd000e142b5658ff22e76ccc5.tar
nixpkgs-b45be4081861389cd000e142b5658ff22e76ccc5.tar.gz
nixpkgs-b45be4081861389cd000e142b5658ff22e76ccc5.tar.bz2
nixpkgs-b45be4081861389cd000e142b5658ff22e76ccc5.tar.lz
nixpkgs-b45be4081861389cd000e142b5658ff22e76ccc5.tar.xz
nixpkgs-b45be4081861389cd000e142b5658ff22e76ccc5.tar.zst
nixpkgs-b45be4081861389cd000e142b5658ff22e76ccc5.zip
airspy: fixup meta
Diffstat (limited to 'pkgs/applications/misc/airspy')
-rw-r--r--pkgs/applications/misc/airspy/default.nix9
1 files 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 ];
     };
   }
-