diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 9300a180ffb3..0e6a52140505 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -9725,12 +9725,19 @@ let self = _self // overrides; _self = with self; { }; }; - OLEStorageLight = buildPerlPackage rec { + # For backwards compatibility. Please use OLEStorage_Lite instead. + OLEStorageLight = OLEStorage_Lite; + + OLEStorage_Lite = buildPerlPackage rec { name = "OLE-Storage_Lite-0.19"; src = fetchurl { url = "mirror://cpan/authors/id/J/JM/JMCNAMARA/${name}.tar.gz"; sha256 = "179cxwqxb0f9dpx8954nvwjmggxxi5ndnang41yav1dx6mf0abp7"; }; + meta = { + description = "Read and write OLE storage files"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; }; Opcodes = buildPerlPackage {