perl-OLE-Storage_Lite: rename attribute name

The attribute name now corresponds to what `nix-generate-from-cpan`
expects. Kept old attribute name for backwards compatibility.

Also added meta section.

+8 -1
+8 -1
pkgs/top-level/perl-packages.nix
··· 9725 }; 9726 }; 9727 9728 - OLEStorageLight = buildPerlPackage rec { 9729 name = "OLE-Storage_Lite-0.19"; 9730 src = fetchurl { 9731 url = "mirror://cpan/authors/id/J/JM/JMCNAMARA/${name}.tar.gz"; 9732 sha256 = "179cxwqxb0f9dpx8954nvwjmggxxi5ndnang41yav1dx6mf0abp7"; 9733 }; 9734 }; 9735
··· 9725 }; 9726 }; 9727 9728 + # For backwards compatibility. Please use OLEStorage_Lite instead. 9729 + OLEStorageLight = OLEStorage_Lite; 9730 + 9731 + OLEStorage_Lite = buildPerlPackage rec { 9732 name = "OLE-Storage_Lite-0.19"; 9733 src = fetchurl { 9734 url = "mirror://cpan/authors/id/J/JM/JMCNAMARA/${name}.tar.gz"; 9735 sha256 = "179cxwqxb0f9dpx8954nvwjmggxxi5ndnang41yav1dx6mf0abp7"; 9736 + }; 9737 + meta = { 9738 + description = "Read and write OLE storage files"; 9739 + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 9740 }; 9741 }; 9742