Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

libmtp: add license

+3 -3
+3 -3
pkgs/development/libraries/libmtp/default.nix
··· 17 17 # tried to install files to /lib/udev, hopefully OK 18 18 configureFlags = [ "--with-udev=$$bin/lib/udev" ]; 19 19 20 - meta = { 20 + meta = with stdenv.lib; { 21 21 homepage = http://libmtp.sourceforge.net; 22 22 description = "An implementation of Microsoft's Media Transfer Protocol"; 23 23 longDescription = '' ··· 25 25 in the form of a library suitable primarily for POSIX compliant operating 26 26 systems. We implement MTP Basic, the stuff proposed for standardization. 27 27 ''; 28 - platforms = stdenv.lib.platforms.unix; 29 - maintainers = [ ]; 28 + platforms = platforms.unix; 29 + license = licenses.lgpl21; 30 30 }; 31 31 }