summary refs log tree commit diff
path: root/pkgs/development/libraries/szip
diff options
context:
space:
mode:
authorAndreas Herrmann <andreash87@gmx.ch>2014-07-05 21:24:42 +0200
committerAndreas Herrmann <andreash87@gmx.ch>2014-07-05 21:41:04 +0200
commitaf8ec93e6a7f279c64569d3c04ca0ad03f41b365 (patch)
tree0f2e26ee8f169d9d4aa45dfeead8615065e0c2a1 /pkgs/development/libraries/szip
parent0e1eac04bb4644b6287908ce70d53a138fafa797 (diff)
downloadnixpkgs-af8ec93e6a7f279c64569d3c04ca0ad03f41b365.tar
nixpkgs-af8ec93e6a7f279c64569d3c04ca0ad03f41b365.tar.gz
nixpkgs-af8ec93e6a7f279c64569d3c04ca0ad03f41b365.tar.bz2
nixpkgs-af8ec93e6a7f279c64569d3c04ca0ad03f41b365.tar.lz
nixpkgs-af8ec93e6a7f279c64569d3c04ca0ad03f41b365.tar.xz
nixpkgs-af8ec93e6a7f279c64569d3c04ca0ad03f41b365.tar.zst
nixpkgs-af8ec93e6a7f279c64569d3c04ca0ad03f41b365.zip
szip: Provide meta-data
The license is set to "unfree" as commercial use is not permitted by the
license [1].

[1]: http://www.hdfgroup.org/doc_resource/SZIP/Commercial_szip.html
Diffstat (limited to 'pkgs/development/libraries/szip')
-rw-r--r--pkgs/development/libraries/szip/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/development/libraries/szip/default.nix b/pkgs/development/libraries/szip/default.nix
index 6ac36054a10..17f9c973fd0 100644
--- a/pkgs/development/libraries/szip/default.nix
+++ b/pkgs/development/libraries/szip/default.nix
@@ -6,4 +6,12 @@ stdenv.mkDerivation {
     url = ftp://ftp.hdfgroup.org/lib-external/szip/2.1/src/szip-2.1.tar.gz;
     sha256 = "1vym7r4by02m0yqj10023xyps5b21ryymnxb4nb2gs32arfxj5m8";
   };
+
+  meta = {
+    description = "
+      Szip is a compression library that can be used with the hdf5 library.
+    ";
+    homepage = http://www.hdfgroup.org/doc_resource/SZIP/;
+    license = stdenv.lib.licenses.unfree;
+  };
 }