1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

zip: add license

This commit is contained in:
Markus Kowalewski 2018-08-09 11:13:59 +02:00
parent 2ff7660178
commit 0aed6cc572
No known key found for this signature in database
GPG key ID: 502A248E3FB4FF48

View file

@ -27,10 +27,11 @@ stdenv.mkDerivation {
buildInputs = stdenv.lib.optional enableNLS libnatspec
++ stdenv.lib.optional stdenv.isCygwin libiconv;
meta = {
meta = with stdenv.lib; {
description = "Compressor/archiver for creating and modifying zipfiles";
homepage = http://www.info-zip.org;
platforms = stdenv.lib.platforms.all;
license = licenses.bsdOriginal;
platforms = platforms.all;
maintainers = [ ];
};
}