slock: fix license

+4 -4
+4 -4
pkgs/misc/screensavers/slock/default.nix
··· 7 7 }; 8 8 buildInputs = [ xproto libX11 libXext libXrandr ]; 9 9 installFlags = "DESTDIR=\${out} PREFIX="; 10 - meta = { 10 + meta = with stdenv.lib; { 11 11 homepage = http://tools.suckless.org/slock; 12 12 description = "Simple X display locker"; 13 13 longDescription = '' 14 14 Simple X display locker. This is the simplest X screen locker. 15 15 ''; 16 - license = "bsd"; 17 - maintainers = with stdenv.lib.maintainers; [ astsmtl ]; 18 - platforms = with stdenv.lib.platforms; linux; 16 + license = licenses.mit; 17 + maintainers = with maintainers; [ astsmtl ]; 18 + platforms = platforms.linux; 19 19 }; 20 20 }