summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-09-12 22:07:50 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-09-12 23:12:15 +0200
commit4503d462c779cf53d6ba3bddce2a61eb4a961a06 (patch)
tree393b29714ad0e3fd1e4fc59d4c0bb597a215196e
parent131bc90d08199bed568789e7524ce9e5172c7bab (diff)
downloadnixpkgs-4503d462c779cf53d6ba3bddce2a61eb4a961a06.tar
nixpkgs-4503d462c779cf53d6ba3bddce2a61eb4a961a06.tar.gz
nixpkgs-4503d462c779cf53d6ba3bddce2a61eb4a961a06.tar.bz2
nixpkgs-4503d462c779cf53d6ba3bddce2a61eb4a961a06.tar.lz
nixpkgs-4503d462c779cf53d6ba3bddce2a61eb4a961a06.tar.xz
nixpkgs-4503d462c779cf53d6ba3bddce2a61eb4a961a06.tar.zst
nixpkgs-4503d462c779cf53d6ba3bddce2a61eb4a961a06.zip
sg3_utils: add licenses
-rw-r--r--pkgs/tools/system/sg3_utils/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/system/sg3_utils/default.nix b/pkgs/tools/system/sg3_utils/default.nix
index ca1af7a74e4..8be7203fb3d 100644
--- a/pkgs/tools/system/sg3_utils/default.nix
+++ b/pkgs/tools/system/sg3_utils/default.nix
@@ -8,10 +8,10 @@ stdenv.mkDerivation rec {
     sha256 = "1wwy7iiz1lvc32c777yd4vp0c0dqfdlm5jrsm3aa62xx141pmjqx";
   };
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://sg.danny.cz/sg/;
     description = "Utilities that send SCSI commands to devices";
-    platforms = stdenv.lib.platforms.linux;
-    maintainers = [ ];
+    platforms = platforms.linux;
+    license = with licenses; [ bsd2 gpl2Plus ];
   };
 }